From 0310186fb786971d8deb45427b3bf6c9de7bb5cd Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 23 Mar 2024 20:37:15 +0100 Subject: [PATCH] Expand accounts page. --- app/Providers/AppServiceProvider.php | 18 +++++++++------ public/v2/i18n/bg.json | 8 ++++++- public/v2/i18n/bg_BG.json | 8 ++++++- public/v2/i18n/ca.json | 8 ++++++- public/v2/i18n/ca_ES.json | 8 ++++++- public/v2/i18n/cs.json | 8 ++++++- public/v2/i18n/cs_CZ.json | 8 ++++++- public/v2/i18n/da.json | 8 ++++++- public/v2/i18n/da_DK.json | 8 ++++++- public/v2/i18n/de.json | 8 ++++++- public/v2/i18n/de_DE.json | 8 ++++++- public/v2/i18n/el.json | 8 ++++++- public/v2/i18n/el_GR.json | 8 ++++++- public/v2/i18n/en-gb.json | 8 ++++++- public/v2/i18n/en.json | 8 ++++++- public/v2/i18n/en_GB.json | 8 ++++++- public/v2/i18n/en_US.json | 8 ++++++- public/v2/i18n/es.json | 8 ++++++- public/v2/i18n/es_ES.json | 8 ++++++- public/v2/i18n/fi.json | 8 ++++++- public/v2/i18n/fi_FI.json | 8 ++++++- public/v2/i18n/fr.json | 8 ++++++- public/v2/i18n/fr_FR.json | 8 ++++++- public/v2/i18n/hu.json | 8 ++++++- public/v2/i18n/hu_HU.json | 8 ++++++- public/v2/i18n/id.json | 8 ++++++- public/v2/i18n/id_ID.json | 8 ++++++- public/v2/i18n/it.json | 8 ++++++- public/v2/i18n/it_IT.json | 8 ++++++- public/v2/i18n/ja.json | 8 ++++++- public/v2/i18n/ja_JP.json | 8 ++++++- public/v2/i18n/ko.json | 8 ++++++- public/v2/i18n/ko_KR.json | 8 ++++++- public/v2/i18n/nb.json | 8 ++++++- public/v2/i18n/nb_NO.json | 8 ++++++- public/v2/i18n/nl.json | 8 ++++++- public/v2/i18n/nl_NL.json | 8 ++++++- public/v2/i18n/nn.json | 8 ++++++- public/v2/i18n/nn_NO.json | 8 ++++++- public/v2/i18n/pl.json | 8 ++++++- public/v2/i18n/pl_PL.json | 8 ++++++- public/v2/i18n/pt-br.json | 8 ++++++- public/v2/i18n/pt.json | 8 ++++++- public/v2/i18n/pt_BR.json | 8 ++++++- public/v2/i18n/pt_PT.json | 8 ++++++- public/v2/i18n/ro.json | 8 ++++++- public/v2/i18n/ro_RO.json | 8 ++++++- public/v2/i18n/ru.json | 8 ++++++- public/v2/i18n/ru_RU.json | 8 ++++++- public/v2/i18n/sk.json | 8 ++++++- public/v2/i18n/sk_SK.json | 8 ++++++- public/v2/i18n/sl.json | 8 ++++++- public/v2/i18n/sl_SI.json | 8 ++++++- public/v2/i18n/sv.json | 8 ++++++- public/v2/i18n/sv_SE.json | 8 ++++++- public/v2/i18n/tr.json | 8 ++++++- public/v2/i18n/tr_TR.json | 8 ++++++- public/v2/i18n/uk.json | 8 ++++++- public/v2/i18n/uk_UA.json | 8 ++++++- public/v2/i18n/vi.json | 8 ++++++- public/v2/i18n/vi_VN.json | 8 ++++++- public/v2/i18n/zh-cn.json | 8 ++++++- public/v2/i18n/zh-tw.json | 8 ++++++- public/v2/i18n/zh_CN.json | 8 ++++++- public/v2/i18n/zh_TW.json | 8 ++++++- resources/assets/v2/pages/accounts/index.js | 6 ++++- resources/lang/en_US/firefly.php | 1 + resources/views/v2/accounts/index.blade.php | 8 +++++-- .../v2/partials/layout/sidebar.blade.php | 22 +++++++++---------- routes/web.php | 8 +++---- 70 files changed, 486 insertions(+), 89 deletions(-) diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 6ea7761851..a49729bb84 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -24,11 +24,11 @@ declare(strict_types=1); namespace FireflyIII\Providers; use Illuminate\Support\Facades\Blade; +use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Response; +use Illuminate\Support\Facades\Route; use Illuminate\Support\Facades\Schema; use Illuminate\Support\ServiceProvider; -use Laravel\Passport\Passport; -use Laravel\Sanctum\Sanctum; /** * Class AppServiceProvider @@ -52,8 +52,7 @@ class AppServiceProvider extends ServiceProvider return response() ->json($value) - ->withHeaders($headers) - ; + ->withHeaders($headers); }); // blade extension @@ -65,9 +64,14 @@ class AppServiceProvider extends ServiceProvider return ''; }); - Blade::if('partialroute', function (string $route) { - $name = \Route::getCurrentRoute()->getName() ?? ''; - if (str_contains($name, $route)) { + Blade::if('partialroute', function (string $route, string $firstParam = '') { + $name = Route::getCurrentRoute()->getName() ?? ''; + if ('' === $firstParam && str_contains($name, $route)) { + return true; + } + $params = Route::getCurrentRoute()->parameters() ?? []; + $objectType = $params['objectType'] ?? ''; + if ($objectType === $firstParam && str_contains($name, $route)) { return true; } diff --git a/public/v2/i18n/bg.json b/public/v2/i18n/bg.json index 2d47da5022..e6cf0b6c92 100644 --- a/public/v2/i18n/bg.json +++ b/public/v2/i18n/bg.json @@ -2,6 +2,7 @@ "config": { "html_language": "bg", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u0414\u044a\u043b\u0433", "account_type_Loan": "\u0417\u0430\u0435\u043c", - "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430" + "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430", + "account_role_defaultAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", + "account_role_sharedAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0438", + "account_role_savingAsset": "\u0421\u043f\u0435\u0441\u0442\u043e\u0432\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", + "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", + "account_role_cashWalletAsset": "\u041f\u0430\u0440\u0438\u0447\u0435\u043d \u043f\u043e\u0440\u0442\u0444\u0435\u0439\u043b" } } \ No newline at end of file diff --git a/public/v2/i18n/bg_BG.json b/public/v2/i18n/bg_BG.json index 2d47da5022..e6cf0b6c92 100644 --- a/public/v2/i18n/bg_BG.json +++ b/public/v2/i18n/bg_BG.json @@ -2,6 +2,7 @@ "config": { "html_language": "bg", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u0414\u044a\u043b\u0433", "account_type_Loan": "\u0417\u0430\u0435\u043c", - "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430" + "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430", + "account_role_defaultAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", + "account_role_sharedAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0438", + "account_role_savingAsset": "\u0421\u043f\u0435\u0441\u0442\u043e\u0432\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", + "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", + "account_role_cashWalletAsset": "\u041f\u0430\u0440\u0438\u0447\u0435\u043d \u043f\u043e\u0440\u0442\u0444\u0435\u0439\u043b" } } \ No newline at end of file diff --git a/public/v2/i18n/ca.json b/public/v2/i18n/ca.json index 7dcddf4e9d..5c9f5e59e1 100644 --- a/public/v2/i18n/ca.json +++ b/public/v2/i18n/ca.json @@ -2,6 +2,7 @@ "config": { "html_language": "ca", "date_time_fns": "D [de\/d'] MMMM yyyy [a les] HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Compte d'ingressos", "account_type_Debt": "Deute", "account_type_Loan": "Cr\u00e8dit", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Compte d'actius per defecte", + "account_role_sharedAsset": "Compte d'actius compartit", + "account_role_savingAsset": "Compte d'estalvis", + "account_role_ccAsset": "Targeta de cr\u00e8dit", + "account_role_cashWalletAsset": "Cartera d'efectiu" } } \ No newline at end of file diff --git a/public/v2/i18n/ca_ES.json b/public/v2/i18n/ca_ES.json index 7dcddf4e9d..5c9f5e59e1 100644 --- a/public/v2/i18n/ca_ES.json +++ b/public/v2/i18n/ca_ES.json @@ -2,6 +2,7 @@ "config": { "html_language": "ca", "date_time_fns": "D [de\/d'] MMMM yyyy [a les] HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Compte d'ingressos", "account_type_Debt": "Deute", "account_type_Loan": "Cr\u00e8dit", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Compte d'actius per defecte", + "account_role_sharedAsset": "Compte d'actius compartit", + "account_role_savingAsset": "Compte d'estalvis", + "account_role_ccAsset": "Targeta de cr\u00e8dit", + "account_role_cashWalletAsset": "Cartera d'efectiu" } } \ No newline at end of file diff --git a/public/v2/i18n/cs.json b/public/v2/i18n/cs.json index ad097def54..307f17c843 100644 --- a/public/v2/i18n/cs.json +++ b/public/v2/i18n/cs.json @@ -2,6 +2,7 @@ "config": { "html_language": "cs", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Dluh", "account_type_Loan": "P\u016fj\u010dka", - "account_type_Mortgage": "Hypot\u00e9ka" + "account_type_Mortgage": "Hypot\u00e9ka", + "account_role_defaultAsset": "V\u00fdchoz\u00ed \u00fa\u010det aktiv", + "account_role_sharedAsset": "Sd\u00edlen\u00fd \u00fa\u010det aktiv", + "account_role_savingAsset": "Spo\u0159ic\u00ed \u00fa\u010det", + "account_role_ccAsset": "Kreditn\u00ed karta", + "account_role_cashWalletAsset": "Pen\u011b\u017eenka" } } \ No newline at end of file diff --git a/public/v2/i18n/cs_CZ.json b/public/v2/i18n/cs_CZ.json index ad097def54..307f17c843 100644 --- a/public/v2/i18n/cs_CZ.json +++ b/public/v2/i18n/cs_CZ.json @@ -2,6 +2,7 @@ "config": { "html_language": "cs", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Dluh", "account_type_Loan": "P\u016fj\u010dka", - "account_type_Mortgage": "Hypot\u00e9ka" + "account_type_Mortgage": "Hypot\u00e9ka", + "account_role_defaultAsset": "V\u00fdchoz\u00ed \u00fa\u010det aktiv", + "account_role_sharedAsset": "Sd\u00edlen\u00fd \u00fa\u010det aktiv", + "account_role_savingAsset": "Spo\u0159ic\u00ed \u00fa\u010det", + "account_role_ccAsset": "Kreditn\u00ed karta", + "account_role_cashWalletAsset": "Pen\u011b\u017eenka" } } \ No newline at end of file diff --git a/public/v2/i18n/da.json b/public/v2/i18n/da.json index 27fd84c6b2..11da3b9252 100644 --- a/public/v2/i18n/da.json +++ b/public/v2/i18n/da.json @@ -2,6 +2,7 @@ "config": { "html_language": "da", "date_time_fns": "MMMM g\u00f8r, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "G\u00e6ld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Pant" + "account_type_Mortgage": "Pant", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "Shared asset account", + "account_role_savingAsset": "Savings account", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/da_DK.json b/public/v2/i18n/da_DK.json index 27fd84c6b2..11da3b9252 100644 --- a/public/v2/i18n/da_DK.json +++ b/public/v2/i18n/da_DK.json @@ -2,6 +2,7 @@ "config": { "html_language": "da", "date_time_fns": "MMMM g\u00f8r, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "G\u00e6ld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Pant" + "account_type_Mortgage": "Pant", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "Shared asset account", + "account_role_savingAsset": "Savings account", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/de.json b/public/v2/i18n/de.json index a3ef62e457..c96f51d6f9 100644 --- a/public/v2/i18n/de.json +++ b/public/v2/i18n/de.json @@ -2,6 +2,7 @@ "config": { "html_language": "de", "date_time_fns": "dd. MMM. yyyy um HH:mm:ss", + "month_and_day_fns": "D. MMMM Y", "date_time_fns_short": "dd. MMM. yyyy um HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Einnahmenkonto", "account_type_Debt": "Schuld", "account_type_Loan": "Darlehen", - "account_type_Mortgage": "Hypothek" + "account_type_Mortgage": "Hypothek", + "account_role_defaultAsset": "Standard-Bestandskonto", + "account_role_sharedAsset": "Gemeinsames Bestandskonto", + "account_role_savingAsset": "Sparkonto", + "account_role_ccAsset": "Kreditkarte", + "account_role_cashWalletAsset": "Geldb\u00f6rse" } } \ No newline at end of file diff --git a/public/v2/i18n/de_DE.json b/public/v2/i18n/de_DE.json index a3ef62e457..c96f51d6f9 100644 --- a/public/v2/i18n/de_DE.json +++ b/public/v2/i18n/de_DE.json @@ -2,6 +2,7 @@ "config": { "html_language": "de", "date_time_fns": "dd. MMM. yyyy um HH:mm:ss", + "month_and_day_fns": "D. MMMM Y", "date_time_fns_short": "dd. MMM. yyyy um HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Einnahmenkonto", "account_type_Debt": "Schuld", "account_type_Loan": "Darlehen", - "account_type_Mortgage": "Hypothek" + "account_type_Mortgage": "Hypothek", + "account_role_defaultAsset": "Standard-Bestandskonto", + "account_role_sharedAsset": "Gemeinsames Bestandskonto", + "account_role_savingAsset": "Sparkonto", + "account_role_ccAsset": "Kreditkarte", + "account_role_cashWalletAsset": "Geldb\u00f6rse" } } \ No newline at end of file diff --git a/public/v2/i18n/el.json b/public/v2/i18n/el.json index 641946b60b..f29ef7dbf0 100644 --- a/public/v2/i18n/el.json +++ b/public/v2/i18n/el.json @@ -2,6 +2,7 @@ "config": { "html_language": "el", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2", "account_type_Loan": "\u0394\u03ac\u03bd\u03b5\u03b9\u03bf", - "account_type_Mortgage": "\u03a5\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7" + "account_type_Mortgage": "\u03a5\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7", + "account_role_defaultAsset": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", + "account_role_sharedAsset": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", + "account_role_savingAsset": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b1\u03bc\u03af\u03b5\u03c5\u03c3\u03b7\u03c2", + "account_role_ccAsset": "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u03ba\u03ac\u03c1\u03c4\u03b1", + "account_role_cashWalletAsset": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03c6\u03cc\u03bb\u03b9 \u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd" } } \ No newline at end of file diff --git a/public/v2/i18n/el_GR.json b/public/v2/i18n/el_GR.json index 641946b60b..f29ef7dbf0 100644 --- a/public/v2/i18n/el_GR.json +++ b/public/v2/i18n/el_GR.json @@ -2,6 +2,7 @@ "config": { "html_language": "el", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2", "account_type_Loan": "\u0394\u03ac\u03bd\u03b5\u03b9\u03bf", - "account_type_Mortgage": "\u03a5\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7" + "account_type_Mortgage": "\u03a5\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7", + "account_role_defaultAsset": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", + "account_role_sharedAsset": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", + "account_role_savingAsset": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b1\u03bc\u03af\u03b5\u03c5\u03c3\u03b7\u03c2", + "account_role_ccAsset": "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u03ba\u03ac\u03c1\u03c4\u03b1", + "account_role_cashWalletAsset": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03c6\u03cc\u03bb\u03b9 \u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd" } } \ No newline at end of file diff --git a/public/v2/i18n/en-gb.json b/public/v2/i18n/en-gb.json index d3c121ea11..e935328484 100644 --- a/public/v2/i18n/en-gb.json +++ b/public/v2/i18n/en-gb.json @@ -2,6 +2,7 @@ "config": { "html_language": "en-gb", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "Shared asset account", + "account_role_savingAsset": "Savings account", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/en.json b/public/v2/i18n/en.json index 7f51e4210c..2b542aa239 100644 --- a/public/v2/i18n/en.json +++ b/public/v2/i18n/en.json @@ -2,6 +2,7 @@ "config": { "html_language": "en", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "Shared asset account", + "account_role_savingAsset": "Savings account", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/en_GB.json b/public/v2/i18n/en_GB.json index d3c121ea11..e935328484 100644 --- a/public/v2/i18n/en_GB.json +++ b/public/v2/i18n/en_GB.json @@ -2,6 +2,7 @@ "config": { "html_language": "en-gb", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "Shared asset account", + "account_role_savingAsset": "Savings account", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/en_US.json b/public/v2/i18n/en_US.json index 7f51e4210c..2b542aa239 100644 --- a/public/v2/i18n/en_US.json +++ b/public/v2/i18n/en_US.json @@ -2,6 +2,7 @@ "config": { "html_language": "en", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "Shared asset account", + "account_role_savingAsset": "Savings account", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/es.json b/public/v2/i18n/es.json index 22c3223846..53e9b2fc8d 100644 --- a/public/v2/i18n/es.json +++ b/public/v2/i18n/es.json @@ -2,6 +2,7 @@ "config": { "html_language": "es", "date_time_fns": "El MMMM hacer, yyyy a las HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Cuenta de ingresos", "account_type_Debt": "Deuda", "account_type_Loan": "Pr\u00e9stamo", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Cuentas de ingresos por defecto", + "account_role_sharedAsset": "Cuenta de ingresos compartida", + "account_role_savingAsset": "Cuentas de ahorros", + "account_role_ccAsset": "Tarjeta de Cr\u00e9dito", + "account_role_cashWalletAsset": "Billetera de efectivo" } } \ No newline at end of file diff --git a/public/v2/i18n/es_ES.json b/public/v2/i18n/es_ES.json index 22c3223846..53e9b2fc8d 100644 --- a/public/v2/i18n/es_ES.json +++ b/public/v2/i18n/es_ES.json @@ -2,6 +2,7 @@ "config": { "html_language": "es", "date_time_fns": "El MMMM hacer, yyyy a las HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Cuenta de ingresos", "account_type_Debt": "Deuda", "account_type_Loan": "Pr\u00e9stamo", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Cuentas de ingresos por defecto", + "account_role_sharedAsset": "Cuenta de ingresos compartida", + "account_role_savingAsset": "Cuentas de ahorros", + "account_role_ccAsset": "Tarjeta de Cr\u00e9dito", + "account_role_cashWalletAsset": "Billetera de efectivo" } } \ No newline at end of file diff --git a/public/v2/i18n/fi.json b/public/v2/i18n/fi.json index 63bf10229a..0160343591 100644 --- a/public/v2/i18n/fi.json +++ b/public/v2/i18n/fi.json @@ -2,6 +2,7 @@ "config": { "html_language": "fi", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Velka", "account_type_Loan": "Laina", - "account_type_Mortgage": "Kiinnelaina" + "account_type_Mortgage": "Kiinnelaina", + "account_role_defaultAsset": "Oletusk\u00e4ytt\u00f6tili", + "account_role_sharedAsset": "Jaettu k\u00e4ytt\u00f6tili", + "account_role_savingAsset": "S\u00e4\u00e4st\u00f6tili", + "account_role_ccAsset": "Luottokortti", + "account_role_cashWalletAsset": "K\u00e4teinen" } } \ No newline at end of file diff --git a/public/v2/i18n/fi_FI.json b/public/v2/i18n/fi_FI.json index 63bf10229a..0160343591 100644 --- a/public/v2/i18n/fi_FI.json +++ b/public/v2/i18n/fi_FI.json @@ -2,6 +2,7 @@ "config": { "html_language": "fi", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Velka", "account_type_Loan": "Laina", - "account_type_Mortgage": "Kiinnelaina" + "account_type_Mortgage": "Kiinnelaina", + "account_role_defaultAsset": "Oletusk\u00e4ytt\u00f6tili", + "account_role_sharedAsset": "Jaettu k\u00e4ytt\u00f6tili", + "account_role_savingAsset": "S\u00e4\u00e4st\u00f6tili", + "account_role_ccAsset": "Luottokortti", + "account_role_cashWalletAsset": "K\u00e4teinen" } } \ No newline at end of file diff --git a/public/v2/i18n/fr.json b/public/v2/i18n/fr.json index 107426ba50..92486f5592 100644 --- a/public/v2/i18n/fr.json +++ b/public/v2/i18n/fr.json @@ -2,6 +2,7 @@ "config": { "html_language": "fr", "date_time_fns": "do MMMM, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Compte de recettes", "account_type_Debt": "Dette", "account_type_Loan": "Pr\u00eat", - "account_type_Mortgage": "Pr\u00eat hypoth\u00e9caire" + "account_type_Mortgage": "Pr\u00eat hypoth\u00e9caire", + "account_role_defaultAsset": "Compte d'actif par d\u00e9faut", + "account_role_sharedAsset": "Compte d'actif partag\u00e9", + "account_role_savingAsset": "Compte d\u2019\u00e9pargne", + "account_role_ccAsset": "Carte de cr\u00e9dit", + "account_role_cashWalletAsset": "Porte-monnaie" } } \ No newline at end of file diff --git a/public/v2/i18n/fr_FR.json b/public/v2/i18n/fr_FR.json index 107426ba50..92486f5592 100644 --- a/public/v2/i18n/fr_FR.json +++ b/public/v2/i18n/fr_FR.json @@ -2,6 +2,7 @@ "config": { "html_language": "fr", "date_time_fns": "do MMMM, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Compte de recettes", "account_type_Debt": "Dette", "account_type_Loan": "Pr\u00eat", - "account_type_Mortgage": "Pr\u00eat hypoth\u00e9caire" + "account_type_Mortgage": "Pr\u00eat hypoth\u00e9caire", + "account_role_defaultAsset": "Compte d'actif par d\u00e9faut", + "account_role_sharedAsset": "Compte d'actif partag\u00e9", + "account_role_savingAsset": "Compte d\u2019\u00e9pargne", + "account_role_ccAsset": "Carte de cr\u00e9dit", + "account_role_cashWalletAsset": "Porte-monnaie" } } \ No newline at end of file diff --git a/public/v2/i18n/hu.json b/public/v2/i18n/hu.json index 58bdb5c279..c87bc3fcd3 100644 --- a/public/v2/i18n/hu.json +++ b/public/v2/i18n/hu.json @@ -2,6 +2,7 @@ "config": { "html_language": "hu", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Ad\u00f3ss\u00e1g", "account_type_Loan": "Hitel", - "account_type_Mortgage": "Jelz\u00e1log" + "account_type_Mortgage": "Jelz\u00e1log", + "account_role_defaultAsset": "Alap\u00e9rtelmezett eszk\u00f6zsz\u00e1mla", + "account_role_sharedAsset": "Megosztott eszk\u00f6zsz\u00e1mla", + "account_role_savingAsset": "Megtakar\u00edt\u00e1si sz\u00e1mla", + "account_role_ccAsset": "Hitelk\u00e1rtya", + "account_role_cashWalletAsset": "K\u00e9szp\u00e9nz" } } \ No newline at end of file diff --git a/public/v2/i18n/hu_HU.json b/public/v2/i18n/hu_HU.json index 58bdb5c279..c87bc3fcd3 100644 --- a/public/v2/i18n/hu_HU.json +++ b/public/v2/i18n/hu_HU.json @@ -2,6 +2,7 @@ "config": { "html_language": "hu", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Ad\u00f3ss\u00e1g", "account_type_Loan": "Hitel", - "account_type_Mortgage": "Jelz\u00e1log" + "account_type_Mortgage": "Jelz\u00e1log", + "account_role_defaultAsset": "Alap\u00e9rtelmezett eszk\u00f6zsz\u00e1mla", + "account_role_sharedAsset": "Megosztott eszk\u00f6zsz\u00e1mla", + "account_role_savingAsset": "Megtakar\u00edt\u00e1si sz\u00e1mla", + "account_role_ccAsset": "Hitelk\u00e1rtya", + "account_role_cashWalletAsset": "K\u00e9szp\u00e9nz" } } \ No newline at end of file diff --git a/public/v2/i18n/id.json b/public/v2/i18n/id.json index d2c397597d..4bac5f446c 100644 --- a/public/v2/i18n/id.json +++ b/public/v2/i18n/id.json @@ -2,6 +2,7 @@ "config": { "html_language": "id", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Akun aset standar", + "account_role_sharedAsset": "Akun aset bersama", + "account_role_savingAsset": "Rekening tabungan", + "account_role_ccAsset": "Kartu kredit", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/id_ID.json b/public/v2/i18n/id_ID.json index d2c397597d..4bac5f446c 100644 --- a/public/v2/i18n/id_ID.json +++ b/public/v2/i18n/id_ID.json @@ -2,6 +2,7 @@ "config": { "html_language": "id", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Akun aset standar", + "account_role_sharedAsset": "Akun aset bersama", + "account_role_savingAsset": "Rekening tabungan", + "account_role_ccAsset": "Kartu kredit", + "account_role_cashWalletAsset": "Cash wallet" } } \ No newline at end of file diff --git a/public/v2/i18n/it.json b/public/v2/i18n/it.json index fa1989f40e..c41834646f 100644 --- a/public/v2/i18n/it.json +++ b/public/v2/i18n/it.json @@ -2,6 +2,7 @@ "config": { "html_language": "it", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Conto di entrate", "account_type_Debt": "Debito", "account_type_Loan": "Prestito", - "account_type_Mortgage": "Mutuo" + "account_type_Mortgage": "Mutuo", + "account_role_defaultAsset": "Conto attivit\u00e0 predefinito", + "account_role_sharedAsset": "Conto attivit\u00e0 condiviso", + "account_role_savingAsset": "Conto risparmio", + "account_role_ccAsset": "Carta di credito", + "account_role_cashWalletAsset": "Portafoglio" } } \ No newline at end of file diff --git a/public/v2/i18n/it_IT.json b/public/v2/i18n/it_IT.json index fa1989f40e..c41834646f 100644 --- a/public/v2/i18n/it_IT.json +++ b/public/v2/i18n/it_IT.json @@ -2,6 +2,7 @@ "config": { "html_language": "it", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Conto di entrate", "account_type_Debt": "Debito", "account_type_Loan": "Prestito", - "account_type_Mortgage": "Mutuo" + "account_type_Mortgage": "Mutuo", + "account_role_defaultAsset": "Conto attivit\u00e0 predefinito", + "account_role_sharedAsset": "Conto attivit\u00e0 condiviso", + "account_role_savingAsset": "Conto risparmio", + "account_role_ccAsset": "Carta di credito", + "account_role_cashWalletAsset": "Portafoglio" } } \ No newline at end of file diff --git a/public/v2/i18n/ja.json b/public/v2/i18n/ja.json index 8344e1ef2c..0ccdd26391 100644 --- a/public/v2/i18n/ja.json +++ b/public/v2/i18n/ja.json @@ -2,6 +2,7 @@ "config": { "html_language": "ja", "date_time_fns": "yyyy\u5e74MMMM\u6708do\u65e5 HH:mm:ss", + "month_and_day_fns": "y\u5e74 MMMM d\u65e5", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "\u53ce\u5165\u53e3\u5ea7", "account_type_Debt": "\u501f\u91d1", "account_type_Loan": "\u30ed\u30fc\u30f3", - "account_type_Mortgage": "\u4f4f\u5b85\u30ed\u30fc\u30f3" + "account_type_Mortgage": "\u4f4f\u5b85\u30ed\u30fc\u30f3", + "account_role_defaultAsset": "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8cc7\u7523\u53e3\u5ea7", + "account_role_sharedAsset": "\u5171\u6709\u8cc7\u7523\u53e3\u5ea7", + "account_role_savingAsset": "\u8caf\u84c4\u53e3\u5ea7", + "account_role_ccAsset": "\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9", + "account_role_cashWalletAsset": "\u73fe\u91d1" } } \ No newline at end of file diff --git a/public/v2/i18n/ja_JP.json b/public/v2/i18n/ja_JP.json index 8344e1ef2c..0ccdd26391 100644 --- a/public/v2/i18n/ja_JP.json +++ b/public/v2/i18n/ja_JP.json @@ -2,6 +2,7 @@ "config": { "html_language": "ja", "date_time_fns": "yyyy\u5e74MMMM\u6708do\u65e5 HH:mm:ss", + "month_and_day_fns": "y\u5e74 MMMM d\u65e5", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "\u53ce\u5165\u53e3\u5ea7", "account_type_Debt": "\u501f\u91d1", "account_type_Loan": "\u30ed\u30fc\u30f3", - "account_type_Mortgage": "\u4f4f\u5b85\u30ed\u30fc\u30f3" + "account_type_Mortgage": "\u4f4f\u5b85\u30ed\u30fc\u30f3", + "account_role_defaultAsset": "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8cc7\u7523\u53e3\u5ea7", + "account_role_sharedAsset": "\u5171\u6709\u8cc7\u7523\u53e3\u5ea7", + "account_role_savingAsset": "\u8caf\u84c4\u53e3\u5ea7", + "account_role_ccAsset": "\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9", + "account_role_cashWalletAsset": "\u73fe\u91d1" } } \ No newline at end of file diff --git a/public/v2/i18n/ko.json b/public/v2/i18n/ko.json index a464cc667e..826bb07624 100644 --- a/public/v2/i18n/ko.json +++ b/public/v2/i18n/ko.json @@ -2,6 +2,7 @@ "config": { "html_language": "ko", "date_time_fns": "YYYY\ub144 M\uc6d4 D\uc77c HH:mm:ss", + "month_and_day_fns": "y\ub144 MMMM d\uc77c", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\ub300\ucd9c", "account_type_Loan": "\ube5a", - "account_type_Mortgage": "\ubaa8\uae30\uc9c0" + "account_type_Mortgage": "\ubaa8\uae30\uc9c0", + "account_role_defaultAsset": "\uae30\ubcf8 \uc790\uc0b0 \uacc4\uc815", + "account_role_sharedAsset": "\uacf5\uc720 \uc790\uc0b0 \uacc4\uc815", + "account_role_savingAsset": "\uc608\uae08 \uacc4\uc88c", + "account_role_ccAsset": "\uc2e0\uc6a9\uce74\ub4dc", + "account_role_cashWalletAsset": "\ud604\uae08 \uc9c0\uac11" } } \ No newline at end of file diff --git a/public/v2/i18n/ko_KR.json b/public/v2/i18n/ko_KR.json index a464cc667e..826bb07624 100644 --- a/public/v2/i18n/ko_KR.json +++ b/public/v2/i18n/ko_KR.json @@ -2,6 +2,7 @@ "config": { "html_language": "ko", "date_time_fns": "YYYY\ub144 M\uc6d4 D\uc77c HH:mm:ss", + "month_and_day_fns": "y\ub144 MMMM d\uc77c", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\ub300\ucd9c", "account_type_Loan": "\ube5a", - "account_type_Mortgage": "\ubaa8\uae30\uc9c0" + "account_type_Mortgage": "\ubaa8\uae30\uc9c0", + "account_role_defaultAsset": "\uae30\ubcf8 \uc790\uc0b0 \uacc4\uc815", + "account_role_sharedAsset": "\uacf5\uc720 \uc790\uc0b0 \uacc4\uc815", + "account_role_savingAsset": "\uc608\uae08 \uacc4\uc88c", + "account_role_ccAsset": "\uc2e0\uc6a9\uce74\ub4dc", + "account_role_cashWalletAsset": "\ud604\uae08 \uc9c0\uac11" } } \ No newline at end of file diff --git a/public/v2/i18n/nb.json b/public/v2/i18n/nb.json index 8b5c611e30..3974c7c0eb 100644 --- a/public/v2/i18n/nb.json +++ b/public/v2/i18n/nb.json @@ -2,6 +2,7 @@ "config": { "html_language": "nb", "date_time_fns": "do MMMM, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Inntektskonto", "account_type_Debt": "Gjeld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Boligl\u00e5n" + "account_type_Mortgage": "Boligl\u00e5n", + "account_role_defaultAsset": "Standard aktivakonto", + "account_role_sharedAsset": "Delt aktivakonto", + "account_role_savingAsset": "Sparekonto", + "account_role_ccAsset": "Kredittkort", + "account_role_cashWalletAsset": "Kontant lommebok" } } \ No newline at end of file diff --git a/public/v2/i18n/nb_NO.json b/public/v2/i18n/nb_NO.json index 8b5c611e30..3974c7c0eb 100644 --- a/public/v2/i18n/nb_NO.json +++ b/public/v2/i18n/nb_NO.json @@ -2,6 +2,7 @@ "config": { "html_language": "nb", "date_time_fns": "do MMMM, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Inntektskonto", "account_type_Debt": "Gjeld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Boligl\u00e5n" + "account_type_Mortgage": "Boligl\u00e5n", + "account_role_defaultAsset": "Standard aktivakonto", + "account_role_sharedAsset": "Delt aktivakonto", + "account_role_savingAsset": "Sparekonto", + "account_role_ccAsset": "Kredittkort", + "account_role_cashWalletAsset": "Kontant lommebok" } } \ No newline at end of file diff --git a/public/v2/i18n/nl.json b/public/v2/i18n/nl.json index 1d7572f61b..2ae65eaa4e 100644 --- a/public/v2/i18n/nl.json +++ b/public/v2/i18n/nl.json @@ -2,6 +2,7 @@ "config": { "html_language": "nl", "date_time_fns": "d MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Debiteur", "account_type_Debt": "Schuld", "account_type_Loan": "Lening", - "account_type_Mortgage": "Hypotheek" + "account_type_Mortgage": "Hypotheek", + "account_role_defaultAsset": "Standaard betaalrekening", + "account_role_sharedAsset": "Gedeelde betaalrekening", + "account_role_savingAsset": "Spaarrekening", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash" } } \ No newline at end of file diff --git a/public/v2/i18n/nl_NL.json b/public/v2/i18n/nl_NL.json index 1d7572f61b..2ae65eaa4e 100644 --- a/public/v2/i18n/nl_NL.json +++ b/public/v2/i18n/nl_NL.json @@ -2,6 +2,7 @@ "config": { "html_language": "nl", "date_time_fns": "d MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Debiteur", "account_type_Debt": "Schuld", "account_type_Loan": "Lening", - "account_type_Mortgage": "Hypotheek" + "account_type_Mortgage": "Hypotheek", + "account_role_defaultAsset": "Standaard betaalrekening", + "account_role_sharedAsset": "Gedeelde betaalrekening", + "account_role_savingAsset": "Spaarrekening", + "account_role_ccAsset": "Credit card", + "account_role_cashWalletAsset": "Cash" } } \ No newline at end of file diff --git a/public/v2/i18n/nn.json b/public/v2/i18n/nn.json index 0c6a2e5f2a..b136210f8f 100644 --- a/public/v2/i18n/nn.json +++ b/public/v2/i18n/nn.json @@ -2,6 +2,7 @@ "config": { "html_language": "nn", "date_time_fns": "do MMMM, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Gjeld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Boligl\u00e5n" + "account_type_Mortgage": "Boligl\u00e5n", + "account_role_defaultAsset": "Standard aktivakonto", + "account_role_sharedAsset": "Delt aktivakonto", + "account_role_savingAsset": "Sparekonto", + "account_role_ccAsset": "Kredittkort", + "account_role_cashWalletAsset": "Kontant lommebok" } } \ No newline at end of file diff --git a/public/v2/i18n/nn_NO.json b/public/v2/i18n/nn_NO.json index 0c6a2e5f2a..b136210f8f 100644 --- a/public/v2/i18n/nn_NO.json +++ b/public/v2/i18n/nn_NO.json @@ -2,6 +2,7 @@ "config": { "html_language": "nn", "date_time_fns": "do MMMM, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Gjeld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Boligl\u00e5n" + "account_type_Mortgage": "Boligl\u00e5n", + "account_role_defaultAsset": "Standard aktivakonto", + "account_role_sharedAsset": "Delt aktivakonto", + "account_role_savingAsset": "Sparekonto", + "account_role_ccAsset": "Kredittkort", + "account_role_cashWalletAsset": "Kontant lommebok" } } \ No newline at end of file diff --git a/public/v2/i18n/pl.json b/public/v2/i18n/pl.json index 0fdf420e5f..c068c9ff50 100644 --- a/public/v2/i18n/pl.json +++ b/public/v2/i18n/pl.json @@ -2,6 +2,7 @@ "config": { "html_language": "pl", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Konto przychod\u00f3w", "account_type_Debt": "D\u0142ug", "account_type_Loan": "Po\u017cyczka", - "account_type_Mortgage": "Hipoteka" + "account_type_Mortgage": "Hipoteka", + "account_role_defaultAsset": "Domy\u015blne konto aktyw\u00f3w", + "account_role_sharedAsset": "Wsp\u00f3\u0142dzielone konto aktyw\u00f3w", + "account_role_savingAsset": "Konto oszcz\u0119dno\u015bciowe", + "account_role_ccAsset": "Karta kredytowa", + "account_role_cashWalletAsset": "Portfel got\u00f3wkowy" } } \ No newline at end of file diff --git a/public/v2/i18n/pl_PL.json b/public/v2/i18n/pl_PL.json index 0fdf420e5f..c068c9ff50 100644 --- a/public/v2/i18n/pl_PL.json +++ b/public/v2/i18n/pl_PL.json @@ -2,6 +2,7 @@ "config": { "html_language": "pl", "date_time_fns": "do MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Konto przychod\u00f3w", "account_type_Debt": "D\u0142ug", "account_type_Loan": "Po\u017cyczka", - "account_type_Mortgage": "Hipoteka" + "account_type_Mortgage": "Hipoteka", + "account_role_defaultAsset": "Domy\u015blne konto aktyw\u00f3w", + "account_role_sharedAsset": "Wsp\u00f3\u0142dzielone konto aktyw\u00f3w", + "account_role_savingAsset": "Konto oszcz\u0119dno\u015bciowe", + "account_role_ccAsset": "Karta kredytowa", + "account_role_cashWalletAsset": "Portfel got\u00f3wkowy" } } \ No newline at end of file diff --git a/public/v2/i18n/pt-br.json b/public/v2/i18n/pt-br.json index 01e0b42978..98110ea8f1 100644 --- a/public/v2/i18n/pt-br.json +++ b/public/v2/i18n/pt-br.json @@ -2,6 +2,7 @@ "config": { "html_language": "pt-br", "date_time_fns": "dd 'de' MMMM 'de' yyyy, '\u00e0s' HH:mm:ss", + "month_and_day_fns": "d [de] MMMM [de] y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Conta de receitas", "account_type_Debt": "D\u00edvida", "account_type_Loan": "Empr\u00e9stimo", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Conta padr\u00e3o", + "account_role_sharedAsset": "Contas de ativos compartilhadas", + "account_role_savingAsset": "Conta poupan\u00e7a", + "account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito", + "account_role_cashWalletAsset": "Carteira de dinheiro" } } \ No newline at end of file diff --git a/public/v2/i18n/pt.json b/public/v2/i18n/pt.json index 6a8c06c47c..a60ef04efd 100644 --- a/public/v2/i18n/pt.json +++ b/public/v2/i18n/pt.json @@ -2,6 +2,7 @@ "config": { "html_language": "pt", "date_time_fns": "DO [de] MMMM YYYY, @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Conta de receitas", "account_type_Debt": "D\u00edvida", "account_type_Loan": "Empr\u00e9stimo", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Conta de ativos predefinida", + "account_role_sharedAsset": "Conta de ativos partilhados", + "account_role_savingAsset": "Conta poupan\u00e7a", + "account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito", + "account_role_cashWalletAsset": "Carteira de dinheiro" } } \ No newline at end of file diff --git a/public/v2/i18n/pt_BR.json b/public/v2/i18n/pt_BR.json index 01e0b42978..98110ea8f1 100644 --- a/public/v2/i18n/pt_BR.json +++ b/public/v2/i18n/pt_BR.json @@ -2,6 +2,7 @@ "config": { "html_language": "pt-br", "date_time_fns": "dd 'de' MMMM 'de' yyyy, '\u00e0s' HH:mm:ss", + "month_and_day_fns": "d [de] MMMM [de] y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Conta de receitas", "account_type_Debt": "D\u00edvida", "account_type_Loan": "Empr\u00e9stimo", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Conta padr\u00e3o", + "account_role_sharedAsset": "Contas de ativos compartilhadas", + "account_role_savingAsset": "Conta poupan\u00e7a", + "account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito", + "account_role_cashWalletAsset": "Carteira de dinheiro" } } \ No newline at end of file diff --git a/public/v2/i18n/pt_PT.json b/public/v2/i18n/pt_PT.json index 6a8c06c47c..a60ef04efd 100644 --- a/public/v2/i18n/pt_PT.json +++ b/public/v2/i18n/pt_PT.json @@ -2,6 +2,7 @@ "config": { "html_language": "pt", "date_time_fns": "DO [de] MMMM YYYY, @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Conta de receitas", "account_type_Debt": "D\u00edvida", "account_type_Loan": "Empr\u00e9stimo", - "account_type_Mortgage": "Hipoteca" + "account_type_Mortgage": "Hipoteca", + "account_role_defaultAsset": "Conta de ativos predefinida", + "account_role_sharedAsset": "Conta de ativos partilhados", + "account_role_savingAsset": "Conta poupan\u00e7a", + "account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito", + "account_role_cashWalletAsset": "Carteira de dinheiro" } } \ No newline at end of file diff --git a/public/v2/i18n/ro.json b/public/v2/i18n/ro.json index 23bc9aebee..8fb99ad8bf 100644 --- a/public/v2/i18n/ro.json +++ b/public/v2/i18n/ro.json @@ -2,6 +2,7 @@ "config": { "html_language": "ro", "date_time_fns": "MMMM do yyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do yyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Cont de venituri", "account_type_Debt": "Datorie", "account_type_Loan": "\u00cemprumut", - "account_type_Mortgage": "Credit ipotecar" + "account_type_Mortgage": "Credit ipotecar", + "account_role_defaultAsset": "Contul implicit activ", + "account_role_sharedAsset": "Contul de active partajat", + "account_role_savingAsset": "Cont de economii", + "account_role_ccAsset": "Card de credit", + "account_role_cashWalletAsset": "Cash - Numerar" } } \ No newline at end of file diff --git a/public/v2/i18n/ro_RO.json b/public/v2/i18n/ro_RO.json index 23bc9aebee..8fb99ad8bf 100644 --- a/public/v2/i18n/ro_RO.json +++ b/public/v2/i18n/ro_RO.json @@ -2,6 +2,7 @@ "config": { "html_language": "ro", "date_time_fns": "MMMM do yyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do yyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Cont de venituri", "account_type_Debt": "Datorie", "account_type_Loan": "\u00cemprumut", - "account_type_Mortgage": "Credit ipotecar" + "account_type_Mortgage": "Credit ipotecar", + "account_role_defaultAsset": "Contul implicit activ", + "account_role_sharedAsset": "Contul de active partajat", + "account_role_savingAsset": "Cont de economii", + "account_role_ccAsset": "Card de credit", + "account_role_cashWalletAsset": "Cash - Numerar" } } \ No newline at end of file diff --git a/public/v2/i18n/ru.json b/public/v2/i18n/ru.json index 73bc5259d4..a0383af624 100644 --- a/public/v2/i18n/ru.json +++ b/public/v2/i18n/ru.json @@ -2,6 +2,7 @@ "config": { "html_language": "ru", "date_time_fns": "Do MMMM yyyy, @ HH:mm:ss", + "month_and_day_fns": "D MMMM YYYY", "date_time_fns_short": "Do MMMM YYYY \u0432 HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "\u0421\u0447\u0435\u0442 \u0434\u043e\u0445\u043e\u0434\u043e\u0432", "account_type_Debt": "\u0414\u0435\u0431\u0438\u0442", "account_type_Loan": "\u0417\u0430\u0451\u043c", - "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430" + "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430", + "account_role_defaultAsset": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", + "account_role_sharedAsset": "\u041e\u0431\u0449\u0438\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442", + "account_role_savingAsset": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0447\u0435\u0442", + "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430", + "account_role_cashWalletAsset": "\u041d\u0430\u043b\u0438\u0447\u043d\u044b\u0435" } } \ No newline at end of file diff --git a/public/v2/i18n/ru_RU.json b/public/v2/i18n/ru_RU.json index 73bc5259d4..a0383af624 100644 --- a/public/v2/i18n/ru_RU.json +++ b/public/v2/i18n/ru_RU.json @@ -2,6 +2,7 @@ "config": { "html_language": "ru", "date_time_fns": "Do MMMM yyyy, @ HH:mm:ss", + "month_and_day_fns": "D MMMM YYYY", "date_time_fns_short": "Do MMMM YYYY \u0432 HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "\u0421\u0447\u0435\u0442 \u0434\u043e\u0445\u043e\u0434\u043e\u0432", "account_type_Debt": "\u0414\u0435\u0431\u0438\u0442", "account_type_Loan": "\u0417\u0430\u0451\u043c", - "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430" + "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430", + "account_role_defaultAsset": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", + "account_role_sharedAsset": "\u041e\u0431\u0449\u0438\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442", + "account_role_savingAsset": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0447\u0435\u0442", + "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430", + "account_role_cashWalletAsset": "\u041d\u0430\u043b\u0438\u0447\u043d\u044b\u0435" } } \ No newline at end of file diff --git a/public/v2/i18n/sk.json b/public/v2/i18n/sk.json index 39f9530a70..f1e4c5d221 100644 --- a/public/v2/i18n/sk.json +++ b/public/v2/i18n/sk.json @@ -2,6 +2,7 @@ "config": { "html_language": "sk", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Dlh", "account_type_Loan": "P\u00f4\u017ei\u010dka", - "account_type_Mortgage": "Hypot\u00e9ka" + "account_type_Mortgage": "Hypot\u00e9ka", + "account_role_defaultAsset": "Predvolen\u00fd \u00fa\u010det akt\u00edv", + "account_role_sharedAsset": "Zdie\u013ean\u00fd \u00fa\u010det akt\u00edv", + "account_role_savingAsset": "\u0160etriaci \u00fa\u010det", + "account_role_ccAsset": "Kreditn\u00e1 karta", + "account_role_cashWalletAsset": "Pe\u0148a\u017eenka" } } \ No newline at end of file diff --git a/public/v2/i18n/sk_SK.json b/public/v2/i18n/sk_SK.json index 39f9530a70..f1e4c5d221 100644 --- a/public/v2/i18n/sk_SK.json +++ b/public/v2/i18n/sk_SK.json @@ -2,6 +2,7 @@ "config": { "html_language": "sk", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Dlh", "account_type_Loan": "P\u00f4\u017ei\u010dka", - "account_type_Mortgage": "Hypot\u00e9ka" + "account_type_Mortgage": "Hypot\u00e9ka", + "account_role_defaultAsset": "Predvolen\u00fd \u00fa\u010det akt\u00edv", + "account_role_sharedAsset": "Zdie\u013ean\u00fd \u00fa\u010det akt\u00edv", + "account_role_savingAsset": "\u0160etriaci \u00fa\u010det", + "account_role_ccAsset": "Kreditn\u00e1 karta", + "account_role_cashWalletAsset": "Pe\u0148a\u017eenka" } } \ No newline at end of file diff --git a/public/v2/i18n/sl.json b/public/v2/i18n/sl.json index 2fa660ef31..018ec027c4 100644 --- a/public/v2/i18n/sl.json +++ b/public/v2/i18n/sl.json @@ -2,6 +2,7 @@ "config": { "html_language": "sl", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Ra\u010dun prihodkov", "account_type_Debt": "Dolg", "account_type_Loan": "Posojilo", - "account_type_Mortgage": "Hipoteka" + "account_type_Mortgage": "Hipoteka", + "account_role_defaultAsset": "Privzeti ra\u010dun sredstev", + "account_role_sharedAsset": "Skupni ra\u010dun sredstev", + "account_role_savingAsset": "Var\u010devalni ra\u010dun", + "account_role_ccAsset": "Kreditna kartica", + "account_role_cashWalletAsset": "Gotovina" } } \ No newline at end of file diff --git a/public/v2/i18n/sl_SI.json b/public/v2/i18n/sl_SI.json index 2fa660ef31..018ec027c4 100644 --- a/public/v2/i18n/sl_SI.json +++ b/public/v2/i18n/sl_SI.json @@ -2,6 +2,7 @@ "config": { "html_language": "sl", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Ra\u010dun prihodkov", "account_type_Debt": "Dolg", "account_type_Loan": "Posojilo", - "account_type_Mortgage": "Hipoteka" + "account_type_Mortgage": "Hipoteka", + "account_role_defaultAsset": "Privzeti ra\u010dun sredstev", + "account_role_sharedAsset": "Skupni ra\u010dun sredstev", + "account_role_savingAsset": "Var\u010devalni ra\u010dun", + "account_role_ccAsset": "Kreditna kartica", + "account_role_cashWalletAsset": "Gotovina" } } \ No newline at end of file diff --git a/public/v2/i18n/sv.json b/public/v2/i18n/sv.json index f5939f496d..6713e2a108 100644 --- a/public/v2/i18n/sv.json +++ b/public/v2/i18n/sv.json @@ -2,6 +2,7 @@ "config": { "html_language": "sv", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Skuld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Bol\u00e5n" + "account_type_Mortgage": "Bol\u00e5n", + "account_role_defaultAsset": "F\u00f6rvalt tillg\u00e5ngskonto", + "account_role_sharedAsset": "Delat tillg\u00e5ngskonto", + "account_role_savingAsset": "Sparkonto", + "account_role_ccAsset": "Kreditkort", + "account_role_cashWalletAsset": "Pl\u00e5nbok" } } \ No newline at end of file diff --git a/public/v2/i18n/sv_SE.json b/public/v2/i18n/sv_SE.json index f5939f496d..6713e2a108 100644 --- a/public/v2/i18n/sv_SE.json +++ b/public/v2/i18n/sv_SE.json @@ -2,6 +2,7 @@ "config": { "html_language": "sv", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "d MMMM y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Skuld", "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Bol\u00e5n" + "account_type_Mortgage": "Bol\u00e5n", + "account_role_defaultAsset": "F\u00f6rvalt tillg\u00e5ngskonto", + "account_role_sharedAsset": "Delat tillg\u00e5ngskonto", + "account_role_savingAsset": "Sparkonto", + "account_role_ccAsset": "Kreditkort", + "account_role_cashWalletAsset": "Pl\u00e5nbok" } } \ No newline at end of file diff --git a/public/v2/i18n/tr.json b/public/v2/i18n/tr.json index 4510cce784..ab5a8c3e57 100644 --- a/public/v2/i18n/tr.json +++ b/public/v2/i18n/tr.json @@ -2,6 +2,7 @@ "config": { "html_language": "tr", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Varsay\u0131lan varl\u0131k hesab\u0131", + "account_role_sharedAsset": "Payla\u015f\u0131lan varl\u0131k hesab\u0131", + "account_role_savingAsset": "Birikim hesab\u0131", + "account_role_ccAsset": "Kredi Kart\u0131", + "account_role_cashWalletAsset": "Nakit c\u00fczdan" } } \ No newline at end of file diff --git a/public/v2/i18n/tr_TR.json b/public/v2/i18n/tr_TR.json index 4510cce784..ab5a8c3e57 100644 --- a/public/v2/i18n/tr_TR.json +++ b/public/v2/i18n/tr_TR.json @@ -2,6 +2,7 @@ "config": { "html_language": "tr", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "Debt", "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage" + "account_type_Mortgage": "Mortgage", + "account_role_defaultAsset": "Varsay\u0131lan varl\u0131k hesab\u0131", + "account_role_sharedAsset": "Payla\u015f\u0131lan varl\u0131k hesab\u0131", + "account_role_savingAsset": "Birikim hesab\u0131", + "account_role_ccAsset": "Kredi Kart\u0131", + "account_role_cashWalletAsset": "Nakit c\u00fczdan" } } \ No newline at end of file diff --git a/public/v2/i18n/uk.json b/public/v2/i18n/uk.json index 6fa8f9ec5c..3189d1d8a9 100644 --- a/public/v2/i18n/uk.json +++ b/public/v2/i18n/uk.json @@ -2,6 +2,7 @@ "config": { "html_language": "uk", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u0414\u0435\u0431\u0456\u0442", "account_type_Loan": "\u041f\u043e\u0437\u0438\u043a\u0430", - "account_type_Mortgage": "\u0406\u043f\u043e\u0442\u0435\u043a\u0430" + "account_type_Mortgage": "\u0406\u043f\u043e\u0442\u0435\u043a\u0430", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "\u0421\u043f\u0456\u043b\u044c\u043d\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a", + "account_role_savingAsset": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043b\u044f \u043d\u0430\u043a\u043e\u043f\u0438\u0447\u0435\u043d\u043d\u044f", + "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u043a\u0430", + "account_role_cashWalletAsset": "\u0413\u0430\u043c\u0430\u043d\u0435\u0446\u044c" } } \ No newline at end of file diff --git a/public/v2/i18n/uk_UA.json b/public/v2/i18n/uk_UA.json index 6fa8f9ec5c..3189d1d8a9 100644 --- a/public/v2/i18n/uk_UA.json +++ b/public/v2/i18n/uk_UA.json @@ -2,6 +2,7 @@ "config": { "html_language": "uk", "date_time_fns": "MMMM do, yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u0414\u0435\u0431\u0456\u0442", "account_type_Loan": "\u041f\u043e\u0437\u0438\u043a\u0430", - "account_type_Mortgage": "\u0406\u043f\u043e\u0442\u0435\u043a\u0430" + "account_type_Mortgage": "\u0406\u043f\u043e\u0442\u0435\u043a\u0430", + "account_role_defaultAsset": "Default asset account", + "account_role_sharedAsset": "\u0421\u043f\u0456\u043b\u044c\u043d\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a", + "account_role_savingAsset": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043b\u044f \u043d\u0430\u043a\u043e\u043f\u0438\u0447\u0435\u043d\u043d\u044f", + "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u043a\u0430", + "account_role_cashWalletAsset": "\u0413\u0430\u043c\u0430\u043d\u0435\u0446\u044c" } } \ No newline at end of file diff --git a/public/v2/i18n/vi.json b/public/v2/i18n/vi.json index f43809d2e1..084b65b4b2 100644 --- a/public/v2/i18n/vi.json +++ b/public/v2/i18n/vi.json @@ -2,6 +2,7 @@ "config": { "html_language": "vi", "date_time_fns": "d MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "M\u00f3n n\u1ee3", "account_type_Loan": "Ti\u1ec1n vay", - "account_type_Mortgage": "Th\u1ebf ch\u1ea5p" + "account_type_Mortgage": "Th\u1ebf ch\u1ea5p", + "account_role_defaultAsset": "t\u00e0i kho\u1ea3n m\u1eb7c \u0111\u1ecbnh", + "account_role_sharedAsset": "t\u00e0i kho\u1ea3n d\u00f9ng chung", + "account_role_savingAsset": "T\u00e0i kho\u1ea3n ti\u1ebft ki\u1ec7m", + "account_role_ccAsset": "Th\u1ebb t\u00edn d\u1ee5ng", + "account_role_cashWalletAsset": "V\u00ed ti\u1ec1n m\u1eb7t" } } \ No newline at end of file diff --git a/public/v2/i18n/vi_VN.json b/public/v2/i18n/vi_VN.json index f43809d2e1..084b65b4b2 100644 --- a/public/v2/i18n/vi_VN.json +++ b/public/v2/i18n/vi_VN.json @@ -2,6 +2,7 @@ "config": { "html_language": "vi", "date_time_fns": "d MMMM yyyy @ HH:mm:ss", + "month_and_day_fns": "MMMM d, y", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "M\u00f3n n\u1ee3", "account_type_Loan": "Ti\u1ec1n vay", - "account_type_Mortgage": "Th\u1ebf ch\u1ea5p" + "account_type_Mortgage": "Th\u1ebf ch\u1ea5p", + "account_role_defaultAsset": "t\u00e0i kho\u1ea3n m\u1eb7c \u0111\u1ecbnh", + "account_role_sharedAsset": "t\u00e0i kho\u1ea3n d\u00f9ng chung", + "account_role_savingAsset": "T\u00e0i kho\u1ea3n ti\u1ebft ki\u1ec7m", + "account_role_ccAsset": "Th\u1ebb t\u00edn d\u1ee5ng", + "account_role_cashWalletAsset": "V\u00ed ti\u1ec1n m\u1eb7t" } } \ No newline at end of file diff --git a/public/v2/i18n/zh-cn.json b/public/v2/i18n/zh-cn.json index bd36519138..07057970b0 100644 --- a/public/v2/i18n/zh-cn.json +++ b/public/v2/i18n/zh-cn.json @@ -2,6 +2,7 @@ "config": { "html_language": "zh-cn", "date_time_fns": "YYYY\u5e74M\u6708D\u65e5 HH:mm:ss", + "month_and_day_fns": "YYYY\u5e74M\u6708D\u65e5", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "\u6536\u5165\u8d26\u6237", "account_type_Debt": "\u6b20\u6b3e", "account_type_Loan": "\u8d37\u6b3e", - "account_type_Mortgage": "\u62b5\u62bc" + "account_type_Mortgage": "\u62b5\u62bc", + "account_role_defaultAsset": "\u9ed8\u8ba4\u8d44\u4ea7\u8d26\u6237", + "account_role_sharedAsset": "\u5171\u7528\u8d44\u4ea7\u8d26\u6237", + "account_role_savingAsset": "\u50a8\u84c4\u8d26\u6237", + "account_role_ccAsset": "\u4fe1\u7528\u5361", + "account_role_cashWalletAsset": "\u73b0\u91d1\u94b1\u5305" } } \ No newline at end of file diff --git a/public/v2/i18n/zh-tw.json b/public/v2/i18n/zh-tw.json index baeba45075..48b2017329 100644 --- a/public/v2/i18n/zh-tw.json +++ b/public/v2/i18n/zh-tw.json @@ -2,6 +2,7 @@ "config": { "html_language": "zh-tw", "date_time_fns": "YYYY\u5e74 M\u6708 D\u65e5 dddd \u65bc HH:mm:ss", + "month_and_day_fns": "YYYY\u5e74 M\u6708 d\u65e5", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u8ca0\u50b5", "account_type_Loan": "\u8cb8\u6b3e", - "account_type_Mortgage": "\u62b5\u62bc" + "account_type_Mortgage": "\u62b5\u62bc", + "account_role_defaultAsset": "\u9810\u8a2d\u8cc7\u7522\u5e33\u6236", + "account_role_sharedAsset": "\u5171\u7528\u8cc7\u7522\u5e33\u6236", + "account_role_savingAsset": "\u5132\u84c4\u5e33\u6236", + "account_role_ccAsset": "\u4fe1\u7528\u5361", + "account_role_cashWalletAsset": "\u73fe\u91d1\u9322\u5305" } } \ No newline at end of file diff --git a/public/v2/i18n/zh_CN.json b/public/v2/i18n/zh_CN.json index bd36519138..07057970b0 100644 --- a/public/v2/i18n/zh_CN.json +++ b/public/v2/i18n/zh_CN.json @@ -2,6 +2,7 @@ "config": { "html_language": "zh-cn", "date_time_fns": "YYYY\u5e74M\u6708D\u65e5 HH:mm:ss", + "month_and_day_fns": "YYYY\u5e74M\u6708D\u65e5", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "\u6536\u5165\u8d26\u6237", "account_type_Debt": "\u6b20\u6b3e", "account_type_Loan": "\u8d37\u6b3e", - "account_type_Mortgage": "\u62b5\u62bc" + "account_type_Mortgage": "\u62b5\u62bc", + "account_role_defaultAsset": "\u9ed8\u8ba4\u8d44\u4ea7\u8d26\u6237", + "account_role_sharedAsset": "\u5171\u7528\u8d44\u4ea7\u8d26\u6237", + "account_role_savingAsset": "\u50a8\u84c4\u8d26\u6237", + "account_role_ccAsset": "\u4fe1\u7528\u5361", + "account_role_cashWalletAsset": "\u73b0\u91d1\u94b1\u5305" } } \ No newline at end of file diff --git a/public/v2/i18n/zh_TW.json b/public/v2/i18n/zh_TW.json index baeba45075..48b2017329 100644 --- a/public/v2/i18n/zh_TW.json +++ b/public/v2/i18n/zh_TW.json @@ -2,6 +2,7 @@ "config": { "html_language": "zh-tw", "date_time_fns": "YYYY\u5e74 M\u6708 D\u65e5 dddd \u65bc HH:mm:ss", + "month_and_day_fns": "YYYY\u5e74 M\u6708 d\u65e5", "date_time_fns_short": "MMMM do, yyyy @ HH:mm" }, "firefly": { @@ -38,6 +39,11 @@ "account_type_Revenue account": "Revenue account", "account_type_Debt": "\u8ca0\u50b5", "account_type_Loan": "\u8cb8\u6b3e", - "account_type_Mortgage": "\u62b5\u62bc" + "account_type_Mortgage": "\u62b5\u62bc", + "account_role_defaultAsset": "\u9810\u8a2d\u8cc7\u7522\u5e33\u6236", + "account_role_sharedAsset": "\u5171\u7528\u8cc7\u7522\u5e33\u6236", + "account_role_savingAsset": "\u5132\u84c4\u5e33\u6236", + "account_role_ccAsset": "\u4fe1\u7528\u5361", + "account_role_cashWalletAsset": "\u73fe\u91d1\u9322\u5305" } } \ No newline at end of file diff --git a/resources/assets/v2/pages/accounts/index.js b/resources/assets/v2/pages/accounts/index.js index 597ed7931a..050006d5a1 100644 --- a/resources/assets/v2/pages/accounts/index.js +++ b/resources/assets/v2/pages/accounts/index.js @@ -58,6 +58,10 @@ let index = function () { sortDirection: '', accounts: [], + accountRole(roleName) { + return i18next.t('firefly.account_role_' + roleName); + }, + sort(column) { this.sortingColumn = column; this.sortDirection = this.sortDirection === 'asc' ? 'desc' : 'asc'; @@ -144,7 +148,7 @@ let index = function () { currency_code: current.attributes.currency_code, native_current_balance: current.attributes.native_current_balance, native_currency_code: current.attributes.native_currency_code, - last_activity: null === current.attributes.last_activity ? '' : format(new Date(current.attributes.last_activity), 'P'), + last_activity: null === current.attributes.last_activity ? '' : format(new Date(current.attributes.last_activity), i18next.t('config.month_and_day_fns')), }; this.accounts.push(account); } diff --git a/resources/lang/en_US/firefly.php b/resources/lang/en_US/firefly.php index caf38e16cb..99cd7d9408 100644 --- a/resources/lang/en_US/firefly.php +++ b/resources/lang/en_US/firefly.php @@ -2234,6 +2234,7 @@ return [ 'description' => 'Description', 'sum_of_period' => 'Sum of period', 'average_in_period' => 'Average in period', + 'no_account_role' => '(no role)', 'account_role_defaultAsset' => 'Default asset account', 'account_role_sharedAsset' => 'Shared asset account', 'account_role_savingAsset' => 'Savings account', diff --git a/resources/views/v2/accounts/index.blade.php b/resources/views/v2/accounts/index.blade.php index daaf3d006e..559b175737 100644 --- a/resources/views/v2/accounts/index.blade.php +++ b/resources/views/v2/accounts/index.blade.php @@ -116,8 +116,12 @@ - - + + diff --git a/resources/views/v2/partials/layout/sidebar.blade.php b/resources/views/v2/partials/layout/sidebar.blade.php index f5d131e399..ac6f54c458 100644 --- a/resources/views/v2/partials/layout/sidebar.blade.php +++ b/resources/views/v2/partials/layout/sidebar.blade.php @@ -50,7 +50,7 @@ -