Expand accounts page.

This commit is contained in:
James Cole
2024-03-23 20:37:15 +01:00
parent 4dcb38290e
commit 0310186fb7
70 changed files with 486 additions and 89 deletions

View File

@@ -24,11 +24,11 @@ declare(strict_types=1);
namespace FireflyIII\Providers; namespace FireflyIII\Providers;
use Illuminate\Support\Facades\Blade; use Illuminate\Support\Facades\Blade;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Response; use Illuminate\Support\Facades\Response;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\Schema; use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Laravel\Passport\Passport;
use Laravel\Sanctum\Sanctum;
/** /**
* Class AppServiceProvider * Class AppServiceProvider
@@ -52,8 +52,7 @@ class AppServiceProvider extends ServiceProvider
return response() return response()
->json($value) ->json($value)
->withHeaders($headers) ->withHeaders($headers);
;
}); });
// blade extension // blade extension
@@ -65,9 +64,14 @@ class AppServiceProvider extends ServiceProvider
return ''; return '';
}); });
Blade::if('partialroute', function (string $route) { Blade::if('partialroute', function (string $route, string $firstParam = '') {
$name = \Route::getCurrentRoute()->getName() ?? ''; $name = Route::getCurrentRoute()->getName() ?? '';
if (str_contains($name, $route)) { if ('' === $firstParam && str_contains($name, $route)) {
return true;
}
$params = Route::getCurrentRoute()->parameters() ?? [];
$objectType = $params['objectType'] ?? '';
if ($objectType === $firstParam && str_contains($name, $route)) {
return true; return true;
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "bg", "html_language": "bg",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u0414\u044a\u043b\u0433", "account_type_Debt": "\u0414\u044a\u043b\u0433",
"account_type_Loan": "\u0417\u0430\u0435\u043c", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "bg", "html_language": "bg",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u0414\u044a\u043b\u0433", "account_type_Debt": "\u0414\u044a\u043b\u0433",
"account_type_Loan": "\u0417\u0430\u0435\u043c", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ca", "html_language": "ca",
"date_time_fns": "D [de\/d'] MMMM yyyy [a les] HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Compte d'ingressos", "account_type_Revenue account": "Compte d'ingressos",
"account_type_Debt": "Deute", "account_type_Debt": "Deute",
"account_type_Loan": "Cr\u00e8dit", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ca", "html_language": "ca",
"date_time_fns": "D [de\/d'] MMMM yyyy [a les] HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Compte d'ingressos", "account_type_Revenue account": "Compte d'ingressos",
"account_type_Debt": "Deute", "account_type_Debt": "Deute",
"account_type_Loan": "Cr\u00e8dit", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "cs", "html_language": "cs",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Dluh", "account_type_Debt": "Dluh",
"account_type_Loan": "P\u016fj\u010dka", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "cs", "html_language": "cs",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Dluh", "account_type_Debt": "Dluh",
"account_type_Loan": "P\u016fj\u010dka", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "da", "html_language": "da",
"date_time_fns": "MMMM g\u00f8r, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "G\u00e6ld", "account_type_Debt": "G\u00e6ld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "da", "html_language": "da",
"date_time_fns": "MMMM g\u00f8r, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "G\u00e6ld", "account_type_Debt": "G\u00e6ld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "de", "html_language": "de",
"date_time_fns": "dd. MMM. yyyy um HH:mm:ss", "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" "date_time_fns_short": "dd. MMM. yyyy um HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Einnahmenkonto", "account_type_Revenue account": "Einnahmenkonto",
"account_type_Debt": "Schuld", "account_type_Debt": "Schuld",
"account_type_Loan": "Darlehen", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "de", "html_language": "de",
"date_time_fns": "dd. MMM. yyyy um HH:mm:ss", "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" "date_time_fns_short": "dd. MMM. yyyy um HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Einnahmenkonto", "account_type_Revenue account": "Einnahmenkonto",
"account_type_Debt": "Schuld", "account_type_Debt": "Schuld",
"account_type_Loan": "Darlehen", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "el", "html_language": "el",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2", "account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2",
"account_type_Loan": "\u0394\u03ac\u03bd\u03b5\u03b9\u03bf", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "el", "html_language": "el",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2", "account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2",
"account_type_Loan": "\u0394\u03ac\u03bd\u03b5\u03b9\u03bf", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "en-gb", "html_language": "en-gb",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "en", "html_language": "en",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "en-gb", "html_language": "en-gb",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "en", "html_language": "en",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "es", "html_language": "es",
"date_time_fns": "El MMMM hacer, yyyy a las HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Cuenta de ingresos", "account_type_Revenue account": "Cuenta de ingresos",
"account_type_Debt": "Deuda", "account_type_Debt": "Deuda",
"account_type_Loan": "Pr\u00e9stamo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "es", "html_language": "es",
"date_time_fns": "El MMMM hacer, yyyy a las HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Cuenta de ingresos", "account_type_Revenue account": "Cuenta de ingresos",
"account_type_Debt": "Deuda", "account_type_Debt": "Deuda",
"account_type_Loan": "Pr\u00e9stamo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "fi", "html_language": "fi",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Velka", "account_type_Debt": "Velka",
"account_type_Loan": "Laina", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "fi", "html_language": "fi",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Velka", "account_type_Debt": "Velka",
"account_type_Loan": "Laina", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "fr", "html_language": "fr",
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Compte de recettes", "account_type_Revenue account": "Compte de recettes",
"account_type_Debt": "Dette", "account_type_Debt": "Dette",
"account_type_Loan": "Pr\u00eat", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "fr", "html_language": "fr",
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Compte de recettes", "account_type_Revenue account": "Compte de recettes",
"account_type_Debt": "Dette", "account_type_Debt": "Dette",
"account_type_Loan": "Pr\u00eat", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "hu", "html_language": "hu",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Ad\u00f3ss\u00e1g", "account_type_Debt": "Ad\u00f3ss\u00e1g",
"account_type_Loan": "Hitel", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "hu", "html_language": "hu",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Ad\u00f3ss\u00e1g", "account_type_Debt": "Ad\u00f3ss\u00e1g",
"account_type_Loan": "Hitel", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "id", "html_language": "id",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "id", "html_language": "id",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "it", "html_language": "it",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Conto di entrate", "account_type_Revenue account": "Conto di entrate",
"account_type_Debt": "Debito", "account_type_Debt": "Debito",
"account_type_Loan": "Prestito", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "it", "html_language": "it",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Conto di entrate", "account_type_Revenue account": "Conto di entrate",
"account_type_Debt": "Debito", "account_type_Debt": "Debito",
"account_type_Loan": "Prestito", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ja", "html_language": "ja",
"date_time_fns": "yyyy\u5e74MMMM\u6708do\u65e5 HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "\u53ce\u5165\u53e3\u5ea7", "account_type_Revenue account": "\u53ce\u5165\u53e3\u5ea7",
"account_type_Debt": "\u501f\u91d1", "account_type_Debt": "\u501f\u91d1",
"account_type_Loan": "\u30ed\u30fc\u30f3", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ja", "html_language": "ja",
"date_time_fns": "yyyy\u5e74MMMM\u6708do\u65e5 HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "\u53ce\u5165\u53e3\u5ea7", "account_type_Revenue account": "\u53ce\u5165\u53e3\u5ea7",
"account_type_Debt": "\u501f\u91d1", "account_type_Debt": "\u501f\u91d1",
"account_type_Loan": "\u30ed\u30fc\u30f3", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ko", "html_language": "ko",
"date_time_fns": "YYYY\ub144 M\uc6d4 D\uc77c HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\ub300\ucd9c", "account_type_Debt": "\ub300\ucd9c",
"account_type_Loan": "\ube5a", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ko", "html_language": "ko",
"date_time_fns": "YYYY\ub144 M\uc6d4 D\uc77c HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\ub300\ucd9c", "account_type_Debt": "\ub300\ucd9c",
"account_type_Loan": "\ube5a", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "nb", "html_language": "nb",
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Inntektskonto", "account_type_Revenue account": "Inntektskonto",
"account_type_Debt": "Gjeld", "account_type_Debt": "Gjeld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "nb", "html_language": "nb",
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Inntektskonto", "account_type_Revenue account": "Inntektskonto",
"account_type_Debt": "Gjeld", "account_type_Debt": "Gjeld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "nl", "html_language": "nl",
"date_time_fns": "d MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Debiteur", "account_type_Revenue account": "Debiteur",
"account_type_Debt": "Schuld", "account_type_Debt": "Schuld",
"account_type_Loan": "Lening", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "nl", "html_language": "nl",
"date_time_fns": "d MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Debiteur", "account_type_Revenue account": "Debiteur",
"account_type_Debt": "Schuld", "account_type_Debt": "Schuld",
"account_type_Loan": "Lening", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "nn", "html_language": "nn",
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Gjeld", "account_type_Debt": "Gjeld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "nn", "html_language": "nn",
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Gjeld", "account_type_Debt": "Gjeld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "pl", "html_language": "pl",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Konto przychod\u00f3w", "account_type_Revenue account": "Konto przychod\u00f3w",
"account_type_Debt": "D\u0142ug", "account_type_Debt": "D\u0142ug",
"account_type_Loan": "Po\u017cyczka", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "pl", "html_language": "pl",
"date_time_fns": "do MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Konto przychod\u00f3w", "account_type_Revenue account": "Konto przychod\u00f3w",
"account_type_Debt": "D\u0142ug", "account_type_Debt": "D\u0142ug",
"account_type_Loan": "Po\u017cyczka", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "pt-br", "html_language": "pt-br",
"date_time_fns": "dd 'de' MMMM 'de' yyyy, '\u00e0s' HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Conta de receitas", "account_type_Revenue account": "Conta de receitas",
"account_type_Debt": "D\u00edvida", "account_type_Debt": "D\u00edvida",
"account_type_Loan": "Empr\u00e9stimo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "pt", "html_language": "pt",
"date_time_fns": "DO [de] MMMM YYYY, @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Conta de receitas", "account_type_Revenue account": "Conta de receitas",
"account_type_Debt": "D\u00edvida", "account_type_Debt": "D\u00edvida",
"account_type_Loan": "Empr\u00e9stimo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "pt-br", "html_language": "pt-br",
"date_time_fns": "dd 'de' MMMM 'de' yyyy, '\u00e0s' HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Conta de receitas", "account_type_Revenue account": "Conta de receitas",
"account_type_Debt": "D\u00edvida", "account_type_Debt": "D\u00edvida",
"account_type_Loan": "Empr\u00e9stimo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "pt", "html_language": "pt",
"date_time_fns": "DO [de] MMMM YYYY, @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Conta de receitas", "account_type_Revenue account": "Conta de receitas",
"account_type_Debt": "D\u00edvida", "account_type_Debt": "D\u00edvida",
"account_type_Loan": "Empr\u00e9stimo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ro", "html_language": "ro",
"date_time_fns": "MMMM do yyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do yyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Cont de venituri", "account_type_Revenue account": "Cont de venituri",
"account_type_Debt": "Datorie", "account_type_Debt": "Datorie",
"account_type_Loan": "\u00cemprumut", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ro", "html_language": "ro",
"date_time_fns": "MMMM do yyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do yyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Cont de venituri", "account_type_Revenue account": "Cont de venituri",
"account_type_Debt": "Datorie", "account_type_Debt": "Datorie",
"account_type_Loan": "\u00cemprumut", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ru", "html_language": "ru",
"date_time_fns": "Do MMMM yyyy, @ HH:mm:ss", "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" "date_time_fns_short": "Do MMMM YYYY \u0432 HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "\u0421\u0447\u0435\u0442 \u0434\u043e\u0445\u043e\u0434\u043e\u0432", "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_Debt": "\u0414\u0435\u0431\u0438\u0442",
"account_type_Loan": "\u0417\u0430\u0451\u043c", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "ru", "html_language": "ru",
"date_time_fns": "Do MMMM yyyy, @ HH:mm:ss", "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" "date_time_fns_short": "Do MMMM YYYY \u0432 HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "\u0421\u0447\u0435\u0442 \u0434\u043e\u0445\u043e\u0434\u043e\u0432", "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_Debt": "\u0414\u0435\u0431\u0438\u0442",
"account_type_Loan": "\u0417\u0430\u0451\u043c", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "sk", "html_language": "sk",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Dlh", "account_type_Debt": "Dlh",
"account_type_Loan": "P\u00f4\u017ei\u010dka", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "sk", "html_language": "sk",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Dlh", "account_type_Debt": "Dlh",
"account_type_Loan": "P\u00f4\u017ei\u010dka", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "sl", "html_language": "sl",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Ra\u010dun prihodkov", "account_type_Revenue account": "Ra\u010dun prihodkov",
"account_type_Debt": "Dolg", "account_type_Debt": "Dolg",
"account_type_Loan": "Posojilo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "sl", "html_language": "sl",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Ra\u010dun prihodkov", "account_type_Revenue account": "Ra\u010dun prihodkov",
"account_type_Debt": "Dolg", "account_type_Debt": "Dolg",
"account_type_Loan": "Posojilo", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "sv", "html_language": "sv",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Skuld", "account_type_Debt": "Skuld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "sv", "html_language": "sv",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Skuld", "account_type_Debt": "Skuld",
"account_type_Loan": "L\u00e5n", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "tr", "html_language": "tr",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "tr", "html_language": "tr",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "Debt", "account_type_Debt": "Debt",
"account_type_Loan": "Loan", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "uk", "html_language": "uk",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u0414\u0435\u0431\u0456\u0442", "account_type_Debt": "\u0414\u0435\u0431\u0456\u0442",
"account_type_Loan": "\u041f\u043e\u0437\u0438\u043a\u0430", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "uk", "html_language": "uk",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u0414\u0435\u0431\u0456\u0442", "account_type_Debt": "\u0414\u0435\u0431\u0456\u0442",
"account_type_Loan": "\u041f\u043e\u0437\u0438\u043a\u0430", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "vi", "html_language": "vi",
"date_time_fns": "d MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "M\u00f3n n\u1ee3", "account_type_Debt": "M\u00f3n n\u1ee3",
"account_type_Loan": "Ti\u1ec1n vay", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "vi", "html_language": "vi",
"date_time_fns": "d MMMM yyyy @ HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "M\u00f3n n\u1ee3", "account_type_Debt": "M\u00f3n n\u1ee3",
"account_type_Loan": "Ti\u1ec1n vay", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "zh-cn", "html_language": "zh-cn",
"date_time_fns": "YYYY\u5e74M\u6708D\u65e5 HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "\u6536\u5165\u8d26\u6237", "account_type_Revenue account": "\u6536\u5165\u8d26\u6237",
"account_type_Debt": "\u6b20\u6b3e", "account_type_Debt": "\u6b20\u6b3e",
"account_type_Loan": "\u8d37\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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "zh-tw", "html_language": "zh-tw",
"date_time_fns": "YYYY\u5e74 M\u6708 D\u65e5 dddd \u65bc HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u8ca0\u50b5", "account_type_Debt": "\u8ca0\u50b5",
"account_type_Loan": "\u8cb8\u6b3e", "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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "zh-cn", "html_language": "zh-cn",
"date_time_fns": "YYYY\u5e74M\u6708D\u65e5 HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "\u6536\u5165\u8d26\u6237", "account_type_Revenue account": "\u6536\u5165\u8d26\u6237",
"account_type_Debt": "\u6b20\u6b3e", "account_type_Debt": "\u6b20\u6b3e",
"account_type_Loan": "\u8d37\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"
} }
} }

View File

@@ -2,6 +2,7 @@
"config": { "config": {
"html_language": "zh-tw", "html_language": "zh-tw",
"date_time_fns": "YYYY\u5e74 M\u6708 D\u65e5 dddd \u65bc HH:mm:ss", "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" "date_time_fns_short": "MMMM do, yyyy @ HH:mm"
}, },
"firefly": { "firefly": {
@@ -38,6 +39,11 @@
"account_type_Revenue account": "Revenue account", "account_type_Revenue account": "Revenue account",
"account_type_Debt": "\u8ca0\u50b5", "account_type_Debt": "\u8ca0\u50b5",
"account_type_Loan": "\u8cb8\u6b3e", "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"
} }
} }

View File

@@ -58,6 +58,10 @@ let index = function () {
sortDirection: '', sortDirection: '',
accounts: [], accounts: [],
accountRole(roleName) {
return i18next.t('firefly.account_role_' + roleName);
},
sort(column) { sort(column) {
this.sortingColumn = column; this.sortingColumn = column;
this.sortDirection = this.sortDirection === 'asc' ? 'desc' : 'asc'; this.sortDirection = this.sortDirection === 'asc' ? 'desc' : 'asc';
@@ -144,7 +148,7 @@ let index = function () {
currency_code: current.attributes.currency_code, currency_code: current.attributes.currency_code,
native_current_balance: current.attributes.native_current_balance, native_current_balance: current.attributes.native_current_balance,
native_currency_code: current.attributes.native_currency_code, 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); this.accounts.push(account);
} }

View File

@@ -2234,6 +2234,7 @@ return [
'description' => 'Description', 'description' => 'Description',
'sum_of_period' => 'Sum of period', 'sum_of_period' => 'Sum of period',
'average_in_period' => 'Average in period', 'average_in_period' => 'Average in period',
'no_account_role' => '(no role)',
'account_role_defaultAsset' => 'Default asset account', 'account_role_defaultAsset' => 'Default asset account',
'account_role_sharedAsset' => 'Shared asset account', 'account_role_sharedAsset' => 'Shared asset account',
'account_role_savingAsset' => 'Savings account', 'account_role_savingAsset' => 'Savings account',

View File

@@ -116,8 +116,12 @@
</div> </div>
</td> </td>
<td> <td>
<span x-text="account.type"></span> <template x-if="null === account.role || '' === account.role">
<span x-text="account.role"></span> <span><em>{{ __('firefly.no_account_role') }}</em></span>
</template>
<template x-if="null !== account.role && '' !== account.role">
<span x-text="accountRole(account.role)"></span>"
</template>
</td> </td>
<td> <td>
<!-- IBAN and no account nr --> <!-- IBAN and no account nr -->

View File

@@ -50,7 +50,7 @@
</li> </li>
<li class="nav-header">{{ strtoupper(__('firefly.accounting')) }}</li> <li class="nav-header">{{ strtoupper(__('firefly.accounting')) }}</li>
<li class="nav-item @partialroute('transactions') menu-open @endpartialroute"> <li class="nav-item @partialroute('transactions') menu-open @endpartialroute">
<a href="#" class="nav-link"> <a href="#" class="nav-link @partialroute('transactions') active @endpartialroute">
<em class="nav-icon fa-solid fa-arrow-right-arrow-left"></em> <em class="nav-icon fa-solid fa-arrow-right-arrow-left"></em>
<p> <p>
{{ __('firefly.transactions') }} {{ __('firefly.transactions') }}
@@ -59,25 +59,25 @@
</a> </a>
<ul class="nav nav-treeview"> <ul class="nav nav-treeview">
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('transactions.index',['withdrawal']) }}" class="nav-link"> <a href="{{ route('transactions.index',['withdrawal']) }}" class="nav-link @partialroute('transactions', 'withdrawal') active @endpartialroute">
<em class="nav-icon fa-solid fa-arrow-left"></em> <em class="nav-icon fa-solid fa-arrow-left"></em>
<p>{{ __('firefly.expenses') }}</p> <p>{{ __('firefly.expenses') }}</p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('transactions.index', ['deposit']) }}" class="nav-link"> <a href="{{ route('transactions.index', ['deposit']) }}" class="nav-link @partialroute('transactions', 'deposit') active @endpartialroute">
<em class="nav-icon fa-solid fa-arrow-right"></em> <em class="nav-icon fa-solid fa-arrow-right"></em>
<p>{{ __('firefly.income') }}</p> <p>{{ __('firefly.income') }}</p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('transactions.index', ['transfers']) }}" class="nav-link"> <a href="{{ route('transactions.index', ['transfers']) }}" class="nav-link @partialroute('transactions', 'transfers') active @endpartialroute">
<i class="nav-icon fa-solid fa-arrows-rotate"></i> <i class="nav-icon fa-solid fa-arrows-rotate"></i>
<p>{{ __('firefly.transfers') }}</p> <p>{{ __('firefly.transfers') }}</p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('transactions.index', ['all']) }}" class="nav-link"> <a href="{{ route('transactions.index', ['all']) }}" class="nav-link @partialroute('transactions', 'all') active @endpartialroute">
<i class="nav-icon fa-solid fa-arrows-turn-to-dots"></i> <i class="nav-icon fa-solid fa-arrows-turn-to-dots"></i>
<p>{{ __('firefly.all_transactions') }}</p> <p>{{ __('firefly.all_transactions') }}</p>
</a> </a>
@@ -114,8 +114,8 @@
</ul> </ul>
</li> </li>
<li class="nav-header">{{ strtoupper(__('firefly.others')) }}</li> <li class="nav-header">{{ strtoupper(__('firefly.others')) }}</li>
<li class="nav-item"> <li class="nav-item @partialroute('accounts') menu-open @endpartialroute">
<a href="#" class="nav-link"> <a href="#" class="nav-link @partialroute('accounts') active @endpartialroute">
<i class="nav-icon fa-regular fa-credit-card"></i> <i class="nav-icon fa-regular fa-credit-card"></i>
<p> <p>
{{ __('firefly.accounts') }} {{ __('firefly.accounts') }}
@@ -124,25 +124,25 @@
</a> </a>
<ul class="nav nav-treeview"> <ul class="nav nav-treeview">
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('accounts.index', ['asset']) }}" class="nav-link"> <a href="{{ route('accounts.index', ['asset']) }}" class="nav-link @partialroute('accounts', 'asset') active @endpartialroute">
<i class="nav-icon fa-solid fa-money-bills"></i> <i class="nav-icon fa-solid fa-money-bills"></i>
<p>{{ __('firefly.asset_accounts') }}</p> <p>{{ __('firefly.asset_accounts') }}</p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('accounts.index', ['expense']) }}" class="nav-link"> <a href="{{ route('accounts.index', ['expense']) }}" class="nav-link @partialroute('accounts', 'expense') active @endpartialroute">
<i class="nav-icon fa-solid fa-cart-shopping"></i> <i class="nav-icon fa-solid fa-cart-shopping"></i>
<p>{{ __('firefly.expense_accounts') }}</p> <p>{{ __('firefly.expense_accounts') }}</p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('accounts.index', ['revenue']) }}" class="nav-link"> <a href="{{ route('accounts.index', ['revenue']) }}" class="nav-link @partialroute('accounts', 'assset') revenue @endpartialroute">
<i class="nav-icon fa-solid fa-money-bill-trend-up"></i> <i class="nav-icon fa-solid fa-money-bill-trend-up"></i>
<p>{{ __('firefly.revenue_accounts') }}</p> <p>{{ __('firefly.revenue_accounts') }}</p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{ route('accounts.index', ['liabilities']) }}" class="nav-link"> <a href="{{ route('accounts.index', ['liabilities']) }}" class="nav-link @partialroute('accounts', 'liabilities') active @endpartialroute">
<i class="nav-icon fa-solid fa-landmark"></i> <i class="nav-icon fa-solid fa-landmark"></i>
<p>{{ __('firefly.liabilities') }}</p> <p>{{ __('firefly.liabilities') }}</p>
</a> </a>

View File

@@ -1203,12 +1203,12 @@ Route::group(
static function (): void { static function (): void {
// show groups: // show groups:
// TODO improve these routes // TODO improve these routes
Route::get('{what}/all', ['uses' => 'Transaction\IndexController@indexAll', 'as' => 'index.all'])->where( Route::get('{objectType}/all', ['uses' => 'Transaction\IndexController@indexAll', 'as' => 'index.all'])->where(
['what' => 'withdrawal|deposit|transfers|transfer|all'] ['objectType' => 'withdrawal|deposit|transfers|transfer|all']
); );
Route::get('{what}/{start_date?}/{end_date?}', ['uses' => 'Transaction\IndexController@index', 'as' => 'index'])->where( Route::get('{objectType}/{start_date?}/{end_date?}', ['uses' => 'Transaction\IndexController@index', 'as' => 'index'])->where(
['what' => 'withdrawal|deposit|transfers|transfer|all'] ['objectType' => 'withdrawal|deposit|transfers|transfer|all']
)->where(['start_date' => DATEFORMAT]) )->where(['start_date' => DATEFORMAT])
->where(['end_date' => DATEFORMAT]) ->where(['end_date' => DATEFORMAT])
; ;