diff --git a/THANKS.md b/THANKS.md
index 3e7726b552..bf2ce0df3d 100755
--- a/THANKS.md
+++ b/THANKS.md
@@ -188,8 +188,6 @@ Please find below all the people who contributed to the Firefly III code. Their
## 2014
- Stewart Malik
- Graham Campbell
-- Sander Dorigo
-- James Cole
Thank you for all your support!
diff --git a/app/Api/V2/Controllers/Model/Account/IndexController.php b/app/Api/V2/Controllers/Model/Account/IndexController.php
index 883bd5ddd5..73008ebbd2 100644
--- a/app/Api/V2/Controllers/Model/Account/IndexController.php
+++ b/app/Api/V2/Controllers/Model/Account/IndexController.php
@@ -33,7 +33,7 @@ use Illuminate\Pagination\LengthAwarePaginator;
class IndexController extends Controller
{
- public const string RESOURCE_KEY = 'accounts';
+ public const string RESOURCE_KEY = 'accounts';
private AccountRepositoryInterface $repository;
protected array $acceptedRoles = [UserRoleEnum::READ_ONLY, UserRoleEnum::MANAGE_TRANSACTIONS];
@@ -48,7 +48,7 @@ class IndexController extends Controller
function ($request, $next) {
$this->repository = app(AccountRepositoryInterface::class);
// new way of user group validation
- $userGroup = $this->validateUserGroup($request);
+ $userGroup = $this->validateUserGroup($request);
$this->repository->setUserGroup($userGroup);
return $next($request);
@@ -79,6 +79,7 @@ class IndexController extends Controller
return response()
->json($this->jsonApiList('accounts', $paginator, $transformer))
- ->header('Content-Type', self::CONTENT_TYPE);
+ ->header('Content-Type', self::CONTENT_TYPE)
+ ;
}
}
diff --git a/app/Api/V2/Request/Model/Account/IndexRequest.php b/app/Api/V2/Request/Model/Account/IndexRequest.php
index b64b7cd9ac..5ff8ffd96b 100644
--- a/app/Api/V2/Request/Model/Account/IndexRequest.php
+++ b/app/Api/V2/Request/Model/Account/IndexRequest.php
@@ -41,9 +41,8 @@ class IndexRequest extends FormRequest
use AccountFilter;
use ChecksLogin;
use ConvertsDataTypes;
- use GetSortInstructions;
use GetFilterInstructions;
-
+ use GetSortInstructions;
public function getAccountTypes(): array
{
diff --git a/app/Repositories/UserGroups/Account/AccountRepository.php b/app/Repositories/UserGroups/Account/AccountRepository.php
index 875e722c8d..9098bbc98d 100644
--- a/app/Repositories/UserGroups/Account/AccountRepository.php
+++ b/app/Repositories/UserGroups/Account/AccountRepository.php
@@ -66,7 +66,8 @@ class AccountRepository implements AccountRepositoryInterface
$q1->where('account_meta.name', '=', 'account_number');
$q1->where('account_meta.data', '=', $json);
}
- );
+ )
+ ;
if (0 !== count($types)) {
$dbQuery->leftJoin('account_types', 'accounts.account_type_id', '=', 'account_types.id');
@@ -92,7 +93,7 @@ class AccountRepository implements AccountRepositoryInterface
public function findByName(string $name, array $types): ?Account
{
- $query = $this->userGroup->accounts();
+ $query = $this->userGroup->accounts();
if (0 !== count($types)) {
$query->leftJoin('account_types', 'accounts.account_type_id', '=', 'account_types.id');
@@ -116,8 +117,8 @@ class AccountRepository implements AccountRepositoryInterface
public function getAccountCurrency(Account $account): ?TransactionCurrency
{
- $type = $account->accountType->type;
- $list = config('firefly.valid_currency_account_types');
+ $type = $account->accountType->type;
+ $list = config('firefly.valid_currency_account_types');
// return null if not in this list.
if (!in_array($type, $list, true)) {
@@ -242,9 +243,9 @@ class AccountRepository implements AccountRepositoryInterface
public function getAccountsByType(array $types, ?array $sort = [], ?array $filters = []): Collection
{
- $sortable = ['name', 'active']; // TODO yes this is a duplicate array.
- $res = array_intersect([AccountType::ASSET, AccountType::MORTGAGE, AccountType::LOAN, AccountType::DEBT], $types);
- $query = $this->userGroup->accounts();
+ $sortable = ['name', 'active']; // TODO yes this is a duplicate array.
+ $res = array_intersect([AccountType::ASSET, AccountType::MORTGAGE, AccountType::LOAN, AccountType::DEBT], $types);
+ $query = $this->userGroup->accounts();
if (0 !== count($types)) {
$query->accountTypeIn($types);
}
@@ -265,7 +266,6 @@ class AccountRepository implements AccountRepositoryInterface
}
}
-
// add sort parameters. At this point they're filtered to allowed fields to sort by:
$hasActiveColumn = array_key_exists('active', $sort);
if (count($sort) > 0) {
@@ -294,11 +294,12 @@ class AccountRepository implements AccountRepositoryInterface
{
// search by group, not by user
$dbQuery = $this->userGroup->accounts()
- ->where('active', true)
- ->orderBy('accounts.order', 'ASC')
- ->orderBy('accounts.account_type_id', 'ASC')
- ->orderBy('accounts.name', 'ASC')
- ->with(['accountType']);
+ ->where('active', true)
+ ->orderBy('accounts.order', 'ASC')
+ ->orderBy('accounts.account_type_id', 'ASC')
+ ->orderBy('accounts.name', 'ASC')
+ ->with(['accountType'])
+ ;
if ('' !== $query) {
// split query on spaces just in case:
$parts = explode(' ', $query);
@@ -339,42 +340,48 @@ class AccountRepository implements AccountRepositoryInterface
public function getAccountTypes(Collection $accounts): Collection
{
return AccountType::leftJoin('accounts', 'accounts.account_type_id', '=', 'account_types.id')
- ->whereIn('accounts.id', $accounts->pluck('id')->toArray())
- ->get(['accounts.id', 'account_types.type']);
+ ->whereIn('accounts.id', $accounts->pluck('id')->toArray())
+ ->get(['accounts.id', 'account_types.type'])
+ ;
}
#[\Override]
public function getLastActivity(Collection $accounts): array
{
return Transaction::whereIn('account_id', $accounts->pluck('id')->toArray())
- ->leftJoin('transaction_journals', 'transaction_journals.id', 'transactions.transaction_journal_id')
- ->groupBy('transactions.account_id')
- ->get(['transactions.account_id', DB::raw('MAX(transaction_journals.date) as date_max')])->toArray() // @phpstan-ignore-line
- ;
+ ->leftJoin('transaction_journals', 'transaction_journals.id', 'transactions.transaction_journal_id')
+ ->groupBy('transactions.account_id')
+ ->get(['transactions.account_id', DB::raw('MAX(transaction_journals.date) as date_max')])->toArray() // @phpstan-ignore-line
+ ;
}
- #[\Override] public function getObjectGroups(Collection $accounts): array
+ #[\Override]
+ public function getObjectGroups(Collection $accounts): array
{
$groupIds = [];
$return = [];
$set = DB::table('object_groupables')->where('object_groupable_type', Account::class)
- ->whereIn('object_groupable_id', $accounts->pluck('id')->toArray())->get();
+ ->whereIn('object_groupable_id', $accounts->pluck('id')->toArray())->get()
+ ;
+
/** @var \stdClass $row */
foreach ($set as $row) {
$groupIds[] = $row->object_group_id;
}
$groupIds = array_unique($groupIds);
$groups = ObjectGroup::whereIn('id', $groupIds)->get();
+
/** @var \stdClass $row */
foreach ($set as $row) {
if (!array_key_exists($row->object_groupable_id, $return)) {
- /** @var ObjectGroup|null $group */
+ /** @var null|ObjectGroup $group */
$group = $groups->firstWhere('id', '=', $row->object_group_id);
if (null !== $group) {
$return[$row->object_groupable_id] = ['title' => $group->title, 'order' => $group->order, 'id' => $group->id];
}
}
}
+
return $return;
}
}
diff --git a/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php b/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php
index 5782b36742..8f4dd586e0 100644
--- a/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php
+++ b/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php
@@ -69,7 +69,7 @@ interface AccountRepositoryInterface
*/
public function getMetaValue(Account $account, string $field): ?string;
- public function getObjectGroups(Collection $accounts) : array;
+ public function getObjectGroups(Collection $accounts): array;
public function getUserGroup(): UserGroup;
diff --git a/app/Support/Request/GetFilterInstructions.php b/app/Support/Request/GetFilterInstructions.php
index 7d1b5ca7de..0598a49ed4 100644
--- a/app/Support/Request/GetFilterInstructions.php
+++ b/app/Support/Request/GetFilterInstructions.php
@@ -37,35 +37,41 @@ trait GetFilterInstructions
return [];
}
foreach ($set as $info) {
- $column = $info['column'] ?? 'NOPE';
- $filterValue = (string) ($info['filter'] ?? self::INVALID_FILTER);
+ $column = $info['column'] ?? 'NOPE';
+ $filterValue = (string) ($info['filter'] ?? self::INVALID_FILTER);
if (false === in_array($column, $allowed, true)) {
// skip invalid column
continue;
}
- $filterType = $config[$column] ?? false;
+ $filterType = $config[$column] ?? false;
+
switch ($filterType) {
default:
- die(sprintf('Do not support filter type "%s"', $filterType));
+ exit(sprintf('Do not support filter type "%s"', $filterType));
+
case 'boolean':
$filterValue = $this->booleanInstruction($filterValue);
+
break;
+
case 'string':
break;
}
$result[$column] = $filterValue;
}
+
return $result;
}
- public function booleanInstruction(string $filterValue): ?bool {
+ public function booleanInstruction(string $filterValue): ?bool
+ {
if ('true' === $filterValue) {
return true;
}
if ('false' === $filterValue) {
return false;
}
+
return null;
}
-
}
diff --git a/app/Transformers/V2/AccountTransformer.php b/app/Transformers/V2/AccountTransformer.php
index 70176693b0..d51da4da3b 100644
--- a/app/Transformers/V2/AccountTransformer.php
+++ b/app/Transformers/V2/AccountTransformer.php
@@ -104,28 +104,28 @@ class AccountTransformer extends AbstractTransformer
*/
public function transform(Account $account): array
{
- $id = $account->id;
+ $id = $account->id;
// various meta
- $accountRole = $this->accountMeta[$id]['account_role'] ?? null;
- $accountType = $this->accountTypes[$id];
- $order = $account->order;
+ $accountRole = $this->accountMeta[$id]['account_role'] ?? null;
+ $accountType = $this->accountTypes[$id];
+ $order = $account->order;
// liability type
- $liabilityType = $accountType === 'liabilities' ? $this->fullTypes[$id] : null;
+ $liabilityType = 'liabilities' === $accountType ? $this->fullTypes[$id] : null;
$liabilityDirection = $this->accountMeta[$id]['liability_direction'] ?? null;
$interest = $this->accountMeta[$id]['interest'] ?? null;
$interestPeriod = $this->accountMeta[$id]['interest_period'] ?? null;
$currentDebt = $this->accountMeta[$id]['current_debt'] ?? null;
// no currency? use default
- $currency = $this->default;
+ $currency = $this->default;
if (array_key_exists($id, $this->accountMeta) && 0 !== (int) ($this->accountMeta[$id]['currency_id'] ?? 0)) {
$currency = $this->currencies[(int) $this->accountMeta[$id]['currency_id']];
}
// amounts and calculation.
- $balance = $this->balances[$id]['balance'] ?? null;
- $nativeBalance = $this->convertedBalances[$id]['native_balance'] ?? null;
+ $balance = $this->balances[$id]['balance'] ?? null;
+ $nativeBalance = $this->convertedBalances[$id]['native_balance'] ?? null;
// no order for some accounts:
if (!in_array(strtolower($accountType), ['liability', 'liabilities', 'asset'], true)) {
@@ -133,15 +133,15 @@ class AccountTransformer extends AbstractTransformer
}
// object group
- $objectGroupId = $this->objectGroups[$id]['id'] ?? null;
- $objectGroupOrder = $this->objectGroups[$id]['order'] ?? null;
- $objectGroupTitle = $this->objectGroups[$id]['title'] ?? null;
+ $objectGroupId = $this->objectGroups[$id]['id'] ?? null;
+ $objectGroupOrder = $this->objectGroups[$id]['order'] ?? null;
+ $objectGroupTitle = $this->objectGroups[$id]['title'] ?? null;
// balance difference
- $diffStart = null;
- $diffEnd = null;
- $balanceDiff = null;
- $nativeBalanceDiff = null;
+ $diffStart = null;
+ $diffEnd = null;
+ $balanceDiff = null;
+ $nativeBalanceDiff = null;
if (null !== $this->parameters->get('start') && null !== $this->parameters->get('end')) {
$diffStart = $this->parameters->get('start')->toAtomString();
$diffEnd = $this->parameters->get('end')->toAtomString();
@@ -150,20 +150,20 @@ class AccountTransformer extends AbstractTransformer
}
return [
- 'id' => (string) $account->id,
- 'created_at' => $account->created_at->toAtomString(),
- 'updated_at' => $account->updated_at->toAtomString(),
- 'active' => $account->active,
- 'order' => $order,
- 'name' => $account->name,
- 'iban' => '' === (string) $account->iban ? null : $account->iban,
- 'account_number' => $this->accountMeta[$id]['account_number'] ?? null,
- 'type' => strtolower($accountType),
- 'account_role' => $accountRole,
- 'currency_id' => (string) $currency->id,
- 'currency_code' => $currency->code,
- 'currency_symbol' => $currency->symbol,
- 'currency_decimal_places' => $currency->decimal_places,
+ 'id' => (string) $account->id,
+ 'created_at' => $account->created_at->toAtomString(),
+ 'updated_at' => $account->updated_at->toAtomString(),
+ 'active' => $account->active,
+ 'order' => $order,
+ 'name' => $account->name,
+ 'iban' => '' === (string) $account->iban ? null : $account->iban,
+ 'account_number' => $this->accountMeta[$id]['account_number'] ?? null,
+ 'type' => strtolower($accountType),
+ 'account_role' => $accountRole,
+ 'currency_id' => (string) $currency->id,
+ 'currency_code' => $currency->code,
+ 'currency_symbol' => $currency->symbol,
+ 'currency_decimal_places' => $currency->decimal_places,
'native_currency_id' => (string) $this->default->id,
'native_currency_code' => $this->default->code,
@@ -210,7 +210,7 @@ class AccountTransformer extends AbstractTransformer
'links' => [
[
'rel' => 'self',
- 'uri' => '/accounts/' . $account->id,
+ 'uri' => '/accounts/'.$account->id,
],
],
];
@@ -233,14 +233,14 @@ class AccountTransformer extends AbstractTransformer
private function collectAccountMetaData(Collection $accounts): void
{
/** @var CurrencyRepositoryInterface $repository */
- $repository = app(CurrencyRepositoryInterface::class);
+ $repository = app(CurrencyRepositoryInterface::class);
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$metaFields = $accountRepository->getMetaValues($accounts, ['currency_id', 'account_role', 'account_number', 'liability_direction', 'interest', 'interest_period', 'current_debt']);
$currencyIds = $metaFields->where('name', 'currency_id')->pluck('data')->toArray();
- $currencies = $repository->getByIds($currencyIds);
+ $currencies = $repository->getByIds($currencyIds);
foreach ($currencies as $currency) {
$id = $currency->id;
$this->currencies[$id] = $currency;
diff --git a/composer.lock b/composer.lock
index c7ad443df9..0ee5a5e568 100644
--- a/composer.lock
+++ b/composer.lock
@@ -5326,16 +5326,16 @@
},
{
"name": "spatie/ignition",
- "version": "1.13.2",
+ "version": "1.14.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/ignition.git",
- "reference": "952798e239d9969e4e694b124c2cc222798dbb28"
+ "reference": "80385994caed328f6f9c9952926932e65b9b774c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/ignition/zipball/952798e239d9969e4e694b124c2cc222798dbb28",
- "reference": "952798e239d9969e4e694b124c2cc222798dbb28",
+ "url": "https://api.github.com/repos/spatie/ignition/zipball/80385994caed328f6f9c9952926932e65b9b774c",
+ "reference": "80385994caed328f6f9c9952926932e65b9b774c",
"shasum": ""
},
"require": {
@@ -5405,7 +5405,7 @@
"type": "github"
}
],
- "time": "2024-04-16T08:49:17+00:00"
+ "time": "2024-04-26T08:45:51+00:00"
},
{
"name": "spatie/laravel-html",
diff --git a/config/firefly.php b/config/firefly.php
index 260eec67c3..a0cd5f0b9f 100644
--- a/config/firefly.php
+++ b/config/firefly.php
@@ -117,7 +117,7 @@ return [
'expression_engine' => false,
// see cer.php for exchange rates feature flag.
],
- 'version' => 'develop/2024-04-26',
+ 'version' => 'develop/2024-04-29',
'api_version' => '2.0.14',
'db_version' => 24,
@@ -436,7 +436,7 @@ return [
'transfers' => 'fa-exchange',
],
- 'bindables' => [
+ 'bindables' => [
// models
'account' => Account::class,
'attachment' => Attachment::class,
@@ -494,7 +494,7 @@ return [
'userGroupBill' => UserGroupBill::class,
'userGroup' => UserGroup::class,
],
- 'rule-actions' => [
+ 'rule-actions' => [
'set_category' => SetCategory::class,
'clear_category' => ClearCategory::class,
'set_budget' => SetBudget::class,
@@ -528,7 +528,7 @@ return [
// 'set_foreign_amount' => SetForeignAmount::class,
// 'set_foreign_currency' => SetForeignCurrency::class,
],
- 'context-rule-actions' => [
+ 'context-rule-actions' => [
'set_category',
'set_budget',
'add_tag',
@@ -547,13 +547,13 @@ return [
'convert_transfer',
],
- 'test-triggers' => [
+ 'test-triggers' => [
'limit' => 10,
'range' => 200,
],
// expected source types for each transaction type, in order of preference.
- 'expected_source_types' => [
+ 'expected_source_types' => [
'source' => [
TransactionTypeModel::WITHDRAWAL => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
TransactionTypeEnum::DEPOSIT->value => [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::REVENUE, AccountType::CASH],
@@ -598,7 +598,7 @@ return [
TransactionTypeModel::LIABILITY_CREDIT => [AccountType::LIABILITY_CREDIT, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
],
],
- 'allowed_opposing_types' => [
+ 'allowed_opposing_types' => [
'source' => [
AccountType::ASSET => [
AccountType::ASSET,
@@ -688,7 +688,7 @@ return [
],
],
// depending on the account type, return the allowed transaction types:
- 'allowed_transaction_types' => [
+ 'allowed_transaction_types' => [
'source' => [
AccountType::ASSET => [
TransactionTypeModel::WITHDRAWAL,
@@ -757,7 +757,7 @@ return [
],
// having the source + dest will tell you the transaction type.
- 'account_to_transaction' => [
+ 'account_to_transaction' => [
AccountType::ASSET => [
AccountType::ASSET => TransactionTypeModel::TRANSFER,
AccountType::CASH => TransactionTypeModel::WITHDRAWAL,
@@ -822,7 +822,7 @@ return [
],
// allowed source -> destination accounts.
- 'source_dests' => [
+ 'source_dests' => [
TransactionTypeModel::WITHDRAWAL => [
AccountType::ASSET => [AccountType::EXPENSE, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::CASH],
AccountType::LOAN => [AccountType::EXPENSE, AccountType::CASH],
@@ -861,7 +861,7 @@ return [
],
],
// if you add fields to this array, don't forget to update the export routine (ExportDataGenerator).
- 'journal_meta_fields' => [
+ 'journal_meta_fields' => [
// sepa
'sepa_cc',
'sepa_ct_op',
@@ -895,33 +895,33 @@ return [
'recurrence_count',
'recurrence_date',
],
- 'webhooks' => [
+ 'webhooks' => [
'max_attempts' => env('WEBHOOK_MAX_ATTEMPTS', 3),
],
- 'can_have_virtual_amounts' => [AccountType::ASSET],
- 'can_have_opening_balance' => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
- 'dynamic_creation_allowed' => [
+ 'can_have_virtual_amounts' => [AccountType::ASSET],
+ 'can_have_opening_balance' => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
+ 'dynamic_creation_allowed' => [
AccountType::EXPENSE,
AccountType::REVENUE,
AccountType::INITIAL_BALANCE,
AccountType::RECONCILIATION,
AccountType::LIABILITY_CREDIT,
],
- 'valid_asset_fields' => ['account_role', 'account_number', 'currency_id', 'BIC', 'include_net_worth'],
- 'valid_cc_fields' => ['account_role', 'cc_monthly_payment_date', 'cc_type', 'account_number', 'currency_id', 'BIC', 'include_net_worth'],
- 'valid_account_fields' => ['account_number', 'currency_id', 'BIC', 'interest', 'interest_period', 'include_net_worth', 'liability_direction'],
+ 'valid_asset_fields' => ['account_role', 'account_number', 'currency_id', 'BIC', 'include_net_worth'],
+ 'valid_cc_fields' => ['account_role', 'cc_monthly_payment_date', 'cc_type', 'account_number', 'currency_id', 'BIC', 'include_net_worth'],
+ 'valid_account_fields' => ['account_number', 'currency_id', 'BIC', 'interest', 'interest_period', 'include_net_worth', 'liability_direction'],
// dynamic date ranges are as follows:
- 'dynamic_date_ranges' => ['last7', 'last30', 'last90', 'last365', 'MTD', 'QTD', 'YTD'],
+ 'dynamic_date_ranges' => ['last7', 'last30', 'last90', 'last365', 'MTD', 'QTD', 'YTD'],
// only used in v1
- 'allowed_sort_parameters' => ['order', 'name', 'iban'],
+ 'allowed_sort_parameters' => ['order', 'name', 'iban'],
// preselected account lists possibilities:
- 'preselected_accounts' => ['all', 'assets', 'liabilities'],
+ 'preselected_accounts' => ['all', 'assets', 'liabilities'],
// allowed filters (search) for APIs
- 'filters' => [
+ 'filters' => [
'allowed' => [
'accounts' => [
'name' => 'string',
@@ -935,10 +935,10 @@ return [
],
// allowed sort columns for APIs
- 'sorting' => [
+ 'sorting' => [
'allowed' => [
'transactions' => ['description', 'amount'],
- 'accounts' => ['name', 'active', 'iban', 'balance', 'last_activity', 'balance_difference','current_debt'],
+ 'accounts' => ['name', 'active', 'iban', 'balance', 'last_activity', 'balance_difference', 'current_debt'],
],
],
];
diff --git a/package-lock.json b/package-lock.json
index 35e5498e45..a5f981b1c6 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -2402,9 +2402,9 @@
}
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.16.4.tgz",
- "integrity": "sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.0.tgz",
+ "integrity": "sha512-nNvLvC2fjC+3+bHYN9uaGF3gcyy7RHGZhtl8TB/kINj9hiOQza8kWJGZh47GRPMrqeseO8U+Z8ElDMCZlWBdHA==",
"cpu": [
"arm"
],
@@ -2415,9 +2415,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.16.4.tgz",
- "integrity": "sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.0.tgz",
+ "integrity": "sha512-+kjt6dvxnyTIAo7oHeYseYhDyZ7xRKTNl/FoQI96PHkJVxoChldJnne/LzYqpqidoK1/0kX0/q+5rrYqjpth6w==",
"cpu": [
"arm64"
],
@@ -2428,9 +2428,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.16.4.tgz",
- "integrity": "sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.0.tgz",
+ "integrity": "sha512-Oj6Tp0unMpGTBjvNwbSRv3DopMNLu+mjBzhKTt2zLbDJ/45fB1pltr/rqrO4bE95LzuYwhYn127pop+x/pzf5w==",
"cpu": [
"arm64"
],
@@ -2441,9 +2441,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.16.4.tgz",
- "integrity": "sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.0.tgz",
+ "integrity": "sha512-3nJx0T+yptxMd+v93rBRxSPTAVCv8szu/fGZDJiKX7kvRe9sENj2ggXjCH/KK1xZEmJOhaNo0c9sGMgGdfkvEw==",
"cpu": [
"x64"
],
@@ -2454,9 +2454,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.16.4.tgz",
- "integrity": "sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.0.tgz",
+ "integrity": "sha512-Vb2e8p9b2lxxgqyOlBHmp6hJMu/HSU6g//6Tbr7x5V1DlPCHWLOm37nSIVK314f+IHzORyAQSqL7+9tELxX3zQ==",
"cpu": [
"arm"
],
@@ -2467,9 +2467,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.16.4.tgz",
- "integrity": "sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.0.tgz",
+ "integrity": "sha512-Md60KsmC5ZIaRq/bYYDloklgU+XLEZwS2EXXVcSpiUw+13/ZASvSWQ/P92rQ9YDCL6EIoXxuQ829JkReqdYbGg==",
"cpu": [
"arm"
],
@@ -2480,9 +2480,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.16.4.tgz",
- "integrity": "sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.0.tgz",
+ "integrity": "sha512-zL5rBFtJ+2EGnMRm2TqKjdjgFqlotSU+ZJEN37nV+fiD3I6Gy0dUh3jBWN0wSlcXVDEJYW7YBe+/2j0N9unb2w==",
"cpu": [
"arm64"
],
@@ -2493,9 +2493,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.16.4.tgz",
- "integrity": "sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.0.tgz",
+ "integrity": "sha512-s2xAyNkJqUdtRVgNK4NK4P9QttS538JuX/kfVQOdZDI5FIKVAUVdLW7qhGfmaySJ1EvN/Bnj9oPm5go9u8navg==",
"cpu": [
"arm64"
],
@@ -2506,9 +2506,9 @@
]
},
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.16.4.tgz",
- "integrity": "sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.0.tgz",
+ "integrity": "sha512-7F99yzVT67B7IUNMjLD9QCFDCyHkyCJMS1dywZrGgVFJao4VJ9szrIEgH67cR+bXQgEaY01ur/WSL6B0jtcLyA==",
"cpu": [
"ppc64"
],
@@ -2519,9 +2519,9 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.16.4.tgz",
- "integrity": "sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.0.tgz",
+ "integrity": "sha512-leFtyiXisfa3Sg9pgZJwRKITWnrQfhtqDjCamnZhkZuIsk1FXmYwKoTkp6lsCgimIcneFFkHKp/yGLxDesga4g==",
"cpu": [
"riscv64"
],
@@ -2532,9 +2532,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.16.4.tgz",
- "integrity": "sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.0.tgz",
+ "integrity": "sha512-FtOgui6qMJ4jbSXTxElsy/60LEe/3U0rXkkz2G5CJ9rbHPAvjMvI+3qF0A0fwLQ5hW+/ZC6PbnS2KfRW9JkgDQ==",
"cpu": [
"s390x"
],
@@ -2545,9 +2545,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.16.4.tgz",
- "integrity": "sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.0.tgz",
+ "integrity": "sha512-v6eiam/1w3HUfU/ZjzIDodencqgrSqzlNuNtiwH7PFJHYSo1ezL0/UIzmS2lpSJF1ORNaplXeKHYmmdt81vV2g==",
"cpu": [
"x64"
],
@@ -2558,9 +2558,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.16.4.tgz",
- "integrity": "sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.0.tgz",
+ "integrity": "sha512-OUhkSdpM5ofVlVU2k4CwVubYwiwu1a4jYWPpubzN7Vzao73GoPBowHcCfaRSFRz1SszJ3HIsk3dZYk4kzbqjgw==",
"cpu": [
"x64"
],
@@ -2571,9 +2571,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.16.4.tgz",
- "integrity": "sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.0.tgz",
+ "integrity": "sha512-uL7UYO/MNJPGL/yflybI+HI+n6+4vlfZmQZOCb4I+z/zy1wisHT3exh7oNQsnL6Eso0EUTEfgQ/PaGzzXf6XyQ==",
"cpu": [
"arm64"
],
@@ -2584,9 +2584,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.16.4.tgz",
- "integrity": "sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.0.tgz",
+ "integrity": "sha512-4WnSgaUiUmXILwFqREdOcqvSj6GD/7FrvSjhaDjmwakX9w4Z2F8JwiSP1AZZbuRkPqzi444UI5FPv33VKOWYFQ==",
"cpu": [
"ia32"
],
@@ -2597,9 +2597,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.16.4.tgz",
- "integrity": "sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.0.tgz",
+ "integrity": "sha512-ve+D8t1prRSRnF2S3pyDtTXDlvW1Pngbz76tjgYFQW1jxVSysmQCZfPoDAo4WP+Ano8zeYp85LsArZBI12HfwQ==",
"cpu": [
"x64"
],
@@ -4020,9 +4020,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001612",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz",
- "integrity": "sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==",
+ "version": "1.0.30001614",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001614.tgz",
+ "integrity": "sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==",
"dev": true,
"funding": [
{
@@ -5095,9 +5095,9 @@
"dev": true
},
"node_modules/electron-to-chromium": {
- "version": "1.4.749",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.749.tgz",
- "integrity": "sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==",
+ "version": "1.4.750",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.750.tgz",
+ "integrity": "sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==",
"dev": true
},
"node_modules/elliptic": {
@@ -5213,9 +5213,9 @@
}
},
"node_modules/es-module-lexer": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.0.tgz",
- "integrity": "sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==",
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.2.tgz",
+ "integrity": "sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==",
"dev": true
},
"node_modules/esbuild": {
@@ -7858,9 +7858,9 @@
}
},
"node_modules/patch-package/node_modules/yaml": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz",
- "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==",
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.2.tgz",
+ "integrity": "sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==",
"dev": true,
"bin": {
"yaml": "bin.mjs"
@@ -8991,9 +8991,9 @@
}
},
"node_modules/rollup": {
- "version": "4.16.4",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.16.4.tgz",
- "integrity": "sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA==",
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.0.tgz",
+ "integrity": "sha512-wZJSn0WMtWrxhYKQRt5Z6GIXlziOoMDFmbHmRfL3v+sBTAshx2DBq1AfMArB7eIjF63r4ocn2ZTAyUptg/7kmQ==",
"dev": true,
"dependencies": {
"@types/estree": "1.0.5"
@@ -9006,22 +9006,22 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.16.4",
- "@rollup/rollup-android-arm64": "4.16.4",
- "@rollup/rollup-darwin-arm64": "4.16.4",
- "@rollup/rollup-darwin-x64": "4.16.4",
- "@rollup/rollup-linux-arm-gnueabihf": "4.16.4",
- "@rollup/rollup-linux-arm-musleabihf": "4.16.4",
- "@rollup/rollup-linux-arm64-gnu": "4.16.4",
- "@rollup/rollup-linux-arm64-musl": "4.16.4",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.16.4",
- "@rollup/rollup-linux-riscv64-gnu": "4.16.4",
- "@rollup/rollup-linux-s390x-gnu": "4.16.4",
- "@rollup/rollup-linux-x64-gnu": "4.16.4",
- "@rollup/rollup-linux-x64-musl": "4.16.4",
- "@rollup/rollup-win32-arm64-msvc": "4.16.4",
- "@rollup/rollup-win32-ia32-msvc": "4.16.4",
- "@rollup/rollup-win32-x64-msvc": "4.16.4",
+ "@rollup/rollup-android-arm-eabi": "4.17.0",
+ "@rollup/rollup-android-arm64": "4.17.0",
+ "@rollup/rollup-darwin-arm64": "4.17.0",
+ "@rollup/rollup-darwin-x64": "4.17.0",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.17.0",
+ "@rollup/rollup-linux-arm-musleabihf": "4.17.0",
+ "@rollup/rollup-linux-arm64-gnu": "4.17.0",
+ "@rollup/rollup-linux-arm64-musl": "4.17.0",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.17.0",
+ "@rollup/rollup-linux-riscv64-gnu": "4.17.0",
+ "@rollup/rollup-linux-s390x-gnu": "4.17.0",
+ "@rollup/rollup-linux-x64-gnu": "4.17.0",
+ "@rollup/rollup-linux-x64-musl": "4.17.0",
+ "@rollup/rollup-win32-arm64-msvc": "4.17.0",
+ "@rollup/rollup-win32-ia32-msvc": "4.17.0",
+ "@rollup/rollup-win32-x64-msvc": "4.17.0",
"fsevents": "~2.3.2"
}
},
@@ -10828,9 +10828,9 @@
"dev": true
},
"node_modules/ws": {
- "version": "8.16.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz",
- "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==",
+ "version": "8.17.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz",
+ "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
"dev": true,
"engines": {
"node": ">=10.0.0"
diff --git a/public/v2/i18n/bg.json b/public/v2/i18n/bg.json
index d910906211..f9b11f15df 100644
--- a/public/v2/i18n/bg.json
+++ b/public/v2/i18n/bg.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\u0414\u044a\u043b\u0436\u0430 \u0434\u044a\u043b\u0433",
+ "liability_direction_credit_short": "\u0414\u044a\u043b\u0436\u044a\u0442 \u043c\u0438 \u0434\u044a\u043b\u0433",
+ "interest_calc_yearly": "\u0413\u043e\u0434\u0438\u0448\u043d\u043e",
+ "interest_calc_": "\u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430",
+ "interest_calc_daily": "\u041d\u0430 \u0434\u0435\u043d",
+ "interest_calc_monthly": "\u041d\u0430 \u043c\u0435\u0441\u0435\u0446",
+ "interest_calc_weekly": "\u0421\u0435\u0434\u043c\u0438\u0447\u043d\u043e",
+ "interest_calc_half-year": "\u0417\u0430 \u043f\u043e\u043b\u043e\u0432\u0438\u043d \u0433\u043e\u0434\u0438\u043d\u0430",
+ "interest_calc_quarterly": "\u0417\u0430 \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/bg_BG.json b/public/v2/i18n/bg_BG.json
index d910906211..f9b11f15df 100644
--- a/public/v2/i18n/bg_BG.json
+++ b/public/v2/i18n/bg_BG.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\u0414\u044a\u043b\u0436\u0430 \u0434\u044a\u043b\u0433",
+ "liability_direction_credit_short": "\u0414\u044a\u043b\u0436\u044a\u0442 \u043c\u0438 \u0434\u044a\u043b\u0433",
+ "interest_calc_yearly": "\u0413\u043e\u0434\u0438\u0448\u043d\u043e",
+ "interest_calc_": "\u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430",
+ "interest_calc_daily": "\u041d\u0430 \u0434\u0435\u043d",
+ "interest_calc_monthly": "\u041d\u0430 \u043c\u0435\u0441\u0435\u0446",
+ "interest_calc_weekly": "\u0421\u0435\u0434\u043c\u0438\u0447\u043d\u043e",
+ "interest_calc_half-year": "\u0417\u0430 \u043f\u043e\u043b\u043e\u0432\u0438\u043d \u0433\u043e\u0434\u0438\u043d\u0430",
+ "interest_calc_quarterly": "\u0417\u0430 \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ca.json b/public/v2/i18n/ca.json
index e80b3f984c..f4332bdc8c 100644
--- a/public/v2/i18n/ca.json
+++ b/public/v2/i18n/ca.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III no pot determinar el tipus de transacci\u00f3 a partir d'aquest compte de dest\u00ed."
},
"firefly": {
+ "liability_direction_debit_short": "Ho dec",
+ "liability_direction_credit_short": "Se'm deu",
+ "interest_calc_yearly": "Per any",
+ "interest_calc_": "desconegut",
+ "interest_calc_daily": "Per dia",
+ "interest_calc_monthly": "Per mes",
+ "interest_calc_weekly": "Per setmana",
+ "interest_calc_half-year": "Cada mig any",
+ "interest_calc_quarterly": "Per quadrimestre",
"spent": "Gastat",
"administration_owner": "Propietari de l'administraci\u00f3: {{email}}",
"administration_you": "El teu rol: {{role}}",
diff --git a/public/v2/i18n/ca_ES.json b/public/v2/i18n/ca_ES.json
index e80b3f984c..f4332bdc8c 100644
--- a/public/v2/i18n/ca_ES.json
+++ b/public/v2/i18n/ca_ES.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III no pot determinar el tipus de transacci\u00f3 a partir d'aquest compte de dest\u00ed."
},
"firefly": {
+ "liability_direction_debit_short": "Ho dec",
+ "liability_direction_credit_short": "Se'm deu",
+ "interest_calc_yearly": "Per any",
+ "interest_calc_": "desconegut",
+ "interest_calc_daily": "Per dia",
+ "interest_calc_monthly": "Per mes",
+ "interest_calc_weekly": "Per setmana",
+ "interest_calc_half-year": "Cada mig any",
+ "interest_calc_quarterly": "Per quadrimestre",
"spent": "Gastat",
"administration_owner": "Propietari de l'administraci\u00f3: {{email}}",
"administration_you": "El teu rol: {{role}}",
diff --git a/public/v2/i18n/cs.json b/public/v2/i18n/cs.json
index aa31e8db21..0ed50630b0 100644
--- a/public/v2/i18n/cs.json
+++ b/public/v2/i18n/cs.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Za rok",
+ "interest_calc_": "nezn\u00e1m\u00e9",
+ "interest_calc_daily": "Za den",
+ "interest_calc_monthly": "Za m\u011bs\u00edc",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Utraceno",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/cs_CZ.json b/public/v2/i18n/cs_CZ.json
index aa31e8db21..0ed50630b0 100644
--- a/public/v2/i18n/cs_CZ.json
+++ b/public/v2/i18n/cs_CZ.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Za rok",
+ "interest_calc_": "nezn\u00e1m\u00e9",
+ "interest_calc_daily": "Za den",
+ "interest_calc_monthly": "Za m\u011bs\u00edc",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Utraceno",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/da.json b/public/v2/i18n/da.json
index 2740bc88f1..ed3c579344 100644
--- a/public/v2/i18n/da.json
+++ b/public/v2/i18n/da.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan ikke bestemme transaktionstypen baseret p\u00e5 denne destinationskonto."
},
"firefly": {
+ "liability_direction_debit_short": "Ejer denne g\u00e6ld",
+ "liability_direction_credit_short": "Ejer denne g\u00e6ld",
+ "interest_calc_yearly": "Pr. \u00e5r",
+ "interest_calc_": "ukendt",
+ "interest_calc_daily": "Pr. dag",
+ "interest_calc_monthly": "Pr. m\u00e5ned",
+ "interest_calc_weekly": "Pr. uge",
+ "interest_calc_half-year": "Hvert halve \u00e5r",
+ "interest_calc_quarterly": "Pr. kvartal",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/da_DK.json b/public/v2/i18n/da_DK.json
index 2740bc88f1..ed3c579344 100644
--- a/public/v2/i18n/da_DK.json
+++ b/public/v2/i18n/da_DK.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan ikke bestemme transaktionstypen baseret p\u00e5 denne destinationskonto."
},
"firefly": {
+ "liability_direction_debit_short": "Ejer denne g\u00e6ld",
+ "liability_direction_credit_short": "Ejer denne g\u00e6ld",
+ "interest_calc_yearly": "Pr. \u00e5r",
+ "interest_calc_": "ukendt",
+ "interest_calc_daily": "Pr. dag",
+ "interest_calc_monthly": "Pr. m\u00e5ned",
+ "interest_calc_weekly": "Pr. uge",
+ "interest_calc_half-year": "Hvert halve \u00e5r",
+ "interest_calc_quarterly": "Pr. kvartal",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/de.json b/public/v2/i18n/de.json
index 85aaa22962..ad5623ad58 100644
--- a/public/v2/i18n/de.json
+++ b/public/v2/i18n/de.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kann die Buchungsart anhand dieses Zielkontos nicht ermitteln."
},
"firefly": {
+ "liability_direction_debit_short": "Schuldiger Betrag",
+ "liability_direction_credit_short": "Geschuldeter Betrag",
+ "interest_calc_yearly": "J\u00e4hrlich",
+ "interest_calc_": "Unbekannt",
+ "interest_calc_daily": "T\u00e4glich",
+ "interest_calc_monthly": "Monatlich",
+ "interest_calc_weekly": "Pro Woche",
+ "interest_calc_half-year": "Halbj\u00e4hrlich",
+ "interest_calc_quarterly": "Viertelj\u00e4hrlich",
"spent": "Ausgegeben",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Ihre Funktion: {{role}}",
diff --git a/public/v2/i18n/de_DE.json b/public/v2/i18n/de_DE.json
index 85aaa22962..ad5623ad58 100644
--- a/public/v2/i18n/de_DE.json
+++ b/public/v2/i18n/de_DE.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kann die Buchungsart anhand dieses Zielkontos nicht ermitteln."
},
"firefly": {
+ "liability_direction_debit_short": "Schuldiger Betrag",
+ "liability_direction_credit_short": "Geschuldeter Betrag",
+ "interest_calc_yearly": "J\u00e4hrlich",
+ "interest_calc_": "Unbekannt",
+ "interest_calc_daily": "T\u00e4glich",
+ "interest_calc_monthly": "Monatlich",
+ "interest_calc_weekly": "Pro Woche",
+ "interest_calc_half-year": "Halbj\u00e4hrlich",
+ "interest_calc_quarterly": "Viertelj\u00e4hrlich",
"spent": "Ausgegeben",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Ihre Funktion: {{role}}",
diff --git a/public/v2/i18n/el.json b/public/v2/i18n/el.json
index c42bdf76a7..5582a2c6a0 100644
--- a/public/v2/i18n/el.json
+++ b/public/v2/i18n/el.json
@@ -27,6 +27,15 @@
"bad_type_destination": "\u03a4\u03bf Firefly III \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c4\u03bf\u03bd \u03c4\u03cd\u03c0\u03bf \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd."
},
"firefly": {
+ "liability_direction_debit_short": "\u039f\u03c6\u03b5\u03af\u03bb\u03c9 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2",
+ "liability_direction_credit_short": "\u039c\u03bf\u03c5 \u03bf\u03c6\u03b5\u03af\u03bb\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2",
+ "interest_calc_yearly": "\u0391\u03bd\u03ac \u03ad\u03c4\u03bf\u03c2",
+ "interest_calc_": "\u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf",
+ "interest_calc_daily": "\u0391\u03bd\u03ac \u03b7\u03bc\u03ad\u03c1\u03b1",
+ "interest_calc_monthly": "\u0391\u03bd\u03ac \u03bc\u03ae\u03bd\u03b1",
+ "interest_calc_weekly": "\u0391\u03bd\u03ac \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1",
+ "interest_calc_half-year": "\u0391\u03bd\u03ac \u03b5\u03be\u03ac\u03bc\u03b7\u03bd\u03bf",
+ "interest_calc_quarterly": "\u0391\u03bd\u03ac \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/el_GR.json b/public/v2/i18n/el_GR.json
index c42bdf76a7..5582a2c6a0 100644
--- a/public/v2/i18n/el_GR.json
+++ b/public/v2/i18n/el_GR.json
@@ -27,6 +27,15 @@
"bad_type_destination": "\u03a4\u03bf Firefly III \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c4\u03bf\u03bd \u03c4\u03cd\u03c0\u03bf \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd."
},
"firefly": {
+ "liability_direction_debit_short": "\u039f\u03c6\u03b5\u03af\u03bb\u03c9 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2",
+ "liability_direction_credit_short": "\u039c\u03bf\u03c5 \u03bf\u03c6\u03b5\u03af\u03bb\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2",
+ "interest_calc_yearly": "\u0391\u03bd\u03ac \u03ad\u03c4\u03bf\u03c2",
+ "interest_calc_": "\u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf",
+ "interest_calc_daily": "\u0391\u03bd\u03ac \u03b7\u03bc\u03ad\u03c1\u03b1",
+ "interest_calc_monthly": "\u0391\u03bd\u03ac \u03bc\u03ae\u03bd\u03b1",
+ "interest_calc_weekly": "\u0391\u03bd\u03ac \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1",
+ "interest_calc_half-year": "\u0391\u03bd\u03ac \u03b5\u03be\u03ac\u03bc\u03b7\u03bd\u03bf",
+ "interest_calc_quarterly": "\u0391\u03bd\u03ac \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/en-gb.json b/public/v2/i18n/en-gb.json
index 08226e775a..e0f56f9814 100644
--- a/public/v2/i18n/en-gb.json
+++ b/public/v2/i18n/en-gb.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/en.json b/public/v2/i18n/en.json
index 3e714f30ab..bc0a721052 100644
--- a/public/v2/i18n/en.json
+++ b/public/v2/i18n/en.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/en_GB.json b/public/v2/i18n/en_GB.json
index 08226e775a..e0f56f9814 100644
--- a/public/v2/i18n/en_GB.json
+++ b/public/v2/i18n/en_GB.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/en_US.json b/public/v2/i18n/en_US.json
index 3e714f30ab..bc0a721052 100644
--- a/public/v2/i18n/en_US.json
+++ b/public/v2/i18n/en_US.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/es.json b/public/v2/i18n/es.json
index b470c6a49f..edc471e03c 100644
--- a/public/v2/i18n/es.json
+++ b/public/v2/i18n/es.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III no puede determinar el tipo de transacci\u00f3n basado en esta cuenta de destino."
},
"firefly": {
+ "liability_direction_debit_short": "Tiene esta deuda",
+ "liability_direction_credit_short": "Ten\u00eda esta deuda",
+ "interest_calc_yearly": "Por a\u00f1o",
+ "interest_calc_": "desconocido",
+ "interest_calc_daily": "Por dia",
+ "interest_calc_monthly": "Por mes",
+ "interest_calc_weekly": "Por semana",
+ "interest_calc_half-year": "Por semestre",
+ "interest_calc_quarterly": "Por trimestre",
"spent": "Gastado",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/es_ES.json b/public/v2/i18n/es_ES.json
index b470c6a49f..edc471e03c 100644
--- a/public/v2/i18n/es_ES.json
+++ b/public/v2/i18n/es_ES.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III no puede determinar el tipo de transacci\u00f3n basado en esta cuenta de destino."
},
"firefly": {
+ "liability_direction_debit_short": "Tiene esta deuda",
+ "liability_direction_credit_short": "Ten\u00eda esta deuda",
+ "interest_calc_yearly": "Por a\u00f1o",
+ "interest_calc_": "desconocido",
+ "interest_calc_daily": "Por dia",
+ "interest_calc_monthly": "Por mes",
+ "interest_calc_weekly": "Por semana",
+ "interest_calc_half-year": "Por semestre",
+ "interest_calc_quarterly": "Por trimestre",
"spent": "Gastado",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/fi.json b/public/v2/i18n/fi.json
index 1c9fca139a..416f415f2d 100644
--- a/public/v2/i18n/fi.json
+++ b/public/v2/i18n/fi.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Olen velkaa",
+ "liability_direction_credit_short": "Minulle ollaan velkaa",
+ "interest_calc_yearly": "Vuodessa",
+ "interest_calc_": "tuntematon",
+ "interest_calc_daily": "P\u00e4iv\u00e4ss\u00e4",
+ "interest_calc_monthly": "Kuukaudessa",
+ "interest_calc_weekly": "Viikossa",
+ "interest_calc_half-year": "Puolessa vuodessa",
+ "interest_calc_quarterly": "Nelj\u00e4nnest\u00e4 kohden",
"spent": "K\u00e4ytetty",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/fi_FI.json b/public/v2/i18n/fi_FI.json
index 1c9fca139a..416f415f2d 100644
--- a/public/v2/i18n/fi_FI.json
+++ b/public/v2/i18n/fi_FI.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Olen velkaa",
+ "liability_direction_credit_short": "Minulle ollaan velkaa",
+ "interest_calc_yearly": "Vuodessa",
+ "interest_calc_": "tuntematon",
+ "interest_calc_daily": "P\u00e4iv\u00e4ss\u00e4",
+ "interest_calc_monthly": "Kuukaudessa",
+ "interest_calc_weekly": "Viikossa",
+ "interest_calc_half-year": "Puolessa vuodessa",
+ "interest_calc_quarterly": "Nelj\u00e4nnest\u00e4 kohden",
"spent": "K\u00e4ytetty",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/fr.json b/public/v2/i18n/fr.json
index 65fb17ae85..b408dccc9d 100644
--- a/public/v2/i18n/fr.json
+++ b/public/v2/i18n/fr.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III ne peut pas d\u00e9terminer le type de transaction bas\u00e9 sur ce compte de destination."
},
"firefly": {
+ "liability_direction_debit_short": "Pr\u00eateur",
+ "liability_direction_credit_short": "Emprunteur",
+ "interest_calc_yearly": "Par an",
+ "interest_calc_": "inconnu",
+ "interest_calc_daily": "Par jour",
+ "interest_calc_monthly": "Par mois",
+ "interest_calc_weekly": "Par semaine",
+ "interest_calc_half-year": "Par semestre",
+ "interest_calc_quarterly": "Par trimestre",
"spent": "D\u00e9pens\u00e9",
"administration_owner": "Propri\u00e9taire de l'administration : {{email}}",
"administration_you": "Votre r\u00f4le : {{role}}",
diff --git a/public/v2/i18n/fr_FR.json b/public/v2/i18n/fr_FR.json
index 65fb17ae85..b408dccc9d 100644
--- a/public/v2/i18n/fr_FR.json
+++ b/public/v2/i18n/fr_FR.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III ne peut pas d\u00e9terminer le type de transaction bas\u00e9 sur ce compte de destination."
},
"firefly": {
+ "liability_direction_debit_short": "Pr\u00eateur",
+ "liability_direction_credit_short": "Emprunteur",
+ "interest_calc_yearly": "Par an",
+ "interest_calc_": "inconnu",
+ "interest_calc_daily": "Par jour",
+ "interest_calc_monthly": "Par mois",
+ "interest_calc_weekly": "Par semaine",
+ "interest_calc_half-year": "Par semestre",
+ "interest_calc_quarterly": "Par trimestre",
"spent": "D\u00e9pens\u00e9",
"administration_owner": "Propri\u00e9taire de l'administration : {{email}}",
"administration_you": "Votre r\u00f4le : {{role}}",
diff --git a/public/v2/i18n/hu.json b/public/v2/i18n/hu.json
index 5780cf740a..8662bc02a8 100644
--- a/public/v2/i18n/hu.json
+++ b/public/v2/i18n/hu.json
@@ -27,6 +27,15 @@
"bad_type_destination": "A Firefly III nem tudja eld\u00f6nteni a tranzakci\u00f3 t\u00edpus\u00e1t a c\u00e9lsz\u00e1mla alapj\u00e1n."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "\u00c9vente",
+ "interest_calc_": "ismeretlen",
+ "interest_calc_daily": "Naponta",
+ "interest_calc_monthly": "Havonta",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Elk\u00f6lt\u00f6tt",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/hu_HU.json b/public/v2/i18n/hu_HU.json
index 5780cf740a..8662bc02a8 100644
--- a/public/v2/i18n/hu_HU.json
+++ b/public/v2/i18n/hu_HU.json
@@ -27,6 +27,15 @@
"bad_type_destination": "A Firefly III nem tudja eld\u00f6nteni a tranzakci\u00f3 t\u00edpus\u00e1t a c\u00e9lsz\u00e1mla alapj\u00e1n."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "\u00c9vente",
+ "interest_calc_": "ismeretlen",
+ "interest_calc_daily": "Naponta",
+ "interest_calc_monthly": "Havonta",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Elk\u00f6lt\u00f6tt",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/id.json b/public/v2/i18n/id.json
index ec2f30a49d..61d2c43454 100644
--- a/public/v2/i18n/id.json
+++ b/public/v2/i18n/id.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Menghabiskan",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/id_ID.json b/public/v2/i18n/id_ID.json
index ec2f30a49d..61d2c43454 100644
--- a/public/v2/i18n/id_ID.json
+++ b/public/v2/i18n/id_ID.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Menghabiskan",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/it.json b/public/v2/i18n/it.json
index c378a81c10..ce87cb8bbe 100644
--- a/public/v2/i18n/it.json
+++ b/public/v2/i18n/it.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III non pu\u00f2 determinare il tipo di transazione in base a questo account di destinazione."
},
"firefly": {
+ "liability_direction_debit_short": "Devo questo debito",
+ "liability_direction_credit_short": "Mi devono questo debito",
+ "interest_calc_yearly": "All'anno",
+ "interest_calc_": "sconosciuto",
+ "interest_calc_daily": "Al giorno",
+ "interest_calc_monthly": "Al mese",
+ "interest_calc_weekly": "Settimanale",
+ "interest_calc_half-year": "Semestrale",
+ "interest_calc_quarterly": "Trimestrale",
"spent": "Speso",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/it_IT.json b/public/v2/i18n/it_IT.json
index c378a81c10..ce87cb8bbe 100644
--- a/public/v2/i18n/it_IT.json
+++ b/public/v2/i18n/it_IT.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III non pu\u00f2 determinare il tipo di transazione in base a questo account di destinazione."
},
"firefly": {
+ "liability_direction_debit_short": "Devo questo debito",
+ "liability_direction_credit_short": "Mi devono questo debito",
+ "interest_calc_yearly": "All'anno",
+ "interest_calc_": "sconosciuto",
+ "interest_calc_daily": "Al giorno",
+ "interest_calc_monthly": "Al mese",
+ "interest_calc_weekly": "Settimanale",
+ "interest_calc_half-year": "Semestrale",
+ "interest_calc_quarterly": "Trimestrale",
"spent": "Speso",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ja.json b/public/v2/i18n/ja.json
index c2ac0e3dd1..e593c637ff 100644
--- a/public/v2/i18n/ja.json
+++ b/public/v2/i18n/ja.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\u3053\u306e\u8ca0\u50b5\u3092\u8ca0\u3046",
+ "liability_direction_credit_short": "\u3053\u306e\u8ca0\u50b5\u3092\u8ca0\u3063\u3066\u3044\u308b",
+ "interest_calc_yearly": "1\u5e74\u3042\u305f\u308a",
+ "interest_calc_": "\u4e0d\u660e",
+ "interest_calc_daily": "1\u65e5\u3042\u305f\u308a",
+ "interest_calc_monthly": "1\u30f6\u6708\u3042\u305f\u308a",
+ "interest_calc_weekly": "1\u9031\u3042\u305f\u308a",
+ "interest_calc_half-year": "\u534a\u5e74\u3042\u305f\u308a",
+ "interest_calc_quarterly": "\u56db\u534a\u671f\u3042\u305f\u308a",
"spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ja_JP.json b/public/v2/i18n/ja_JP.json
index c2ac0e3dd1..e593c637ff 100644
--- a/public/v2/i18n/ja_JP.json
+++ b/public/v2/i18n/ja_JP.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\u3053\u306e\u8ca0\u50b5\u3092\u8ca0\u3046",
+ "liability_direction_credit_short": "\u3053\u306e\u8ca0\u50b5\u3092\u8ca0\u3063\u3066\u3044\u308b",
+ "interest_calc_yearly": "1\u5e74\u3042\u305f\u308a",
+ "interest_calc_": "\u4e0d\u660e",
+ "interest_calc_daily": "1\u65e5\u3042\u305f\u308a",
+ "interest_calc_monthly": "1\u30f6\u6708\u3042\u305f\u308a",
+ "interest_calc_weekly": "1\u9031\u3042\u305f\u308a",
+ "interest_calc_half-year": "\u534a\u5e74\u3042\u305f\u308a",
+ "interest_calc_quarterly": "\u56db\u534a\u671f\u3042\u305f\u308a",
"spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ko.json b/public/v2/i18n/ko.json
index 15fe130931..919b5cbea2 100644
--- a/public/v2/i18n/ko.json
+++ b/public/v2/i18n/ko.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\uc774 \ube5a\uc744 \uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4",
+ "liability_direction_credit_short": "\uc774 \ube5a\uc744 \uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4",
+ "interest_calc_yearly": "\uc5f0\uac04",
+ "interest_calc_": "\uc54c \uc218 \uc5c6\uc74c",
+ "interest_calc_daily": "\uc77c\ubcc4",
+ "interest_calc_monthly": "\uc6d4\ubcc4",
+ "interest_calc_weekly": "\uc8fc\ub2f9",
+ "interest_calc_half-year": "\ubc18\uae30\ub2f9",
+ "interest_calc_quarterly": "\ubd84\uae30\ub2f9",
"spent": "\uc9c0\ucd9c",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ko_KR.json b/public/v2/i18n/ko_KR.json
index 15fe130931..919b5cbea2 100644
--- a/public/v2/i18n/ko_KR.json
+++ b/public/v2/i18n/ko_KR.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\uc774 \ube5a\uc744 \uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4",
+ "liability_direction_credit_short": "\uc774 \ube5a\uc744 \uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4",
+ "interest_calc_yearly": "\uc5f0\uac04",
+ "interest_calc_": "\uc54c \uc218 \uc5c6\uc74c",
+ "interest_calc_daily": "\uc77c\ubcc4",
+ "interest_calc_monthly": "\uc6d4\ubcc4",
+ "interest_calc_weekly": "\uc8fc\ub2f9",
+ "interest_calc_half-year": "\ubc18\uae30\ub2f9",
+ "interest_calc_quarterly": "\ubd84\uae30\ub2f9",
"spent": "\uc9c0\ucd9c",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/nb.json b/public/v2/i18n/nb.json
index 8dbd936183..4a117963f9 100644
--- a/public/v2/i18n/nb.json
+++ b/public/v2/i18n/nb.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Skylder denne gjelden",
+ "liability_direction_credit_short": "Jeg skuldet denne gjelden",
+ "interest_calc_yearly": "Per \u00e5r",
+ "interest_calc_": "ukjent",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per m\u00e5ned",
+ "interest_calc_weekly": "Per uke",
+ "interest_calc_half-year": "Per halv\u00e5r",
+ "interest_calc_quarterly": "Per kvartal",
"spent": "Brukt",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/nb_NO.json b/public/v2/i18n/nb_NO.json
index 8dbd936183..4a117963f9 100644
--- a/public/v2/i18n/nb_NO.json
+++ b/public/v2/i18n/nb_NO.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Skylder denne gjelden",
+ "liability_direction_credit_short": "Jeg skuldet denne gjelden",
+ "interest_calc_yearly": "Per \u00e5r",
+ "interest_calc_": "ukjent",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per m\u00e5ned",
+ "interest_calc_weekly": "Per uke",
+ "interest_calc_half-year": "Per halv\u00e5r",
+ "interest_calc_quarterly": "Per kvartal",
"spent": "Brukt",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/nl.json b/public/v2/i18n/nl.json
index 4567e12079..66d17ebdca 100644
--- a/public/v2/i18n/nl.json
+++ b/public/v2/i18n/nl.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan het transactietype niet bepalen op basis van deze doelrekening."
},
"firefly": {
+ "liability_direction_debit_short": "Schuldenaar",
+ "liability_direction_credit_short": "Schuldeiser",
+ "interest_calc_yearly": "Per jaar",
+ "interest_calc_": "onbekend",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per maand",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half jaar",
+ "interest_calc_quarterly": "Per kwartaal",
"spent": "Uitgegeven",
"administration_owner": "Grootboekeigenaar: {{email}}",
"administration_you": "Jouw rol: {{role}}",
diff --git a/public/v2/i18n/nl_NL.json b/public/v2/i18n/nl_NL.json
index 4567e12079..66d17ebdca 100644
--- a/public/v2/i18n/nl_NL.json
+++ b/public/v2/i18n/nl_NL.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan het transactietype niet bepalen op basis van deze doelrekening."
},
"firefly": {
+ "liability_direction_debit_short": "Schuldenaar",
+ "liability_direction_credit_short": "Schuldeiser",
+ "interest_calc_yearly": "Per jaar",
+ "interest_calc_": "onbekend",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per maand",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half jaar",
+ "interest_calc_quarterly": "Per kwartaal",
"spent": "Uitgegeven",
"administration_owner": "Grootboekeigenaar: {{email}}",
"administration_you": "Jouw rol: {{role}}",
diff --git a/public/v2/i18n/nn.json b/public/v2/i18n/nn.json
index d5376ea6a7..c5f46c89d6 100644
--- a/public/v2/i18n/nn.json
+++ b/public/v2/i18n/nn.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Jeg skuldet denne gjelda",
+ "interest_calc_yearly": "Per \u00e5r",
+ "interest_calc_": "ukjent",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per m\u00e5nad",
+ "interest_calc_weekly": "Per veke",
+ "interest_calc_half-year": "Per halv\u00e5r",
+ "interest_calc_quarterly": "Per kvartal",
"spent": "Brukt",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/nn_NO.json b/public/v2/i18n/nn_NO.json
index d5376ea6a7..c5f46c89d6 100644
--- a/public/v2/i18n/nn_NO.json
+++ b/public/v2/i18n/nn_NO.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Jeg skuldet denne gjelda",
+ "interest_calc_yearly": "Per \u00e5r",
+ "interest_calc_": "ukjent",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per m\u00e5nad",
+ "interest_calc_weekly": "Per veke",
+ "interest_calc_half-year": "Per halv\u00e5r",
+ "interest_calc_quarterly": "Per kvartal",
"spent": "Brukt",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/pl.json b/public/v2/i18n/pl.json
index 1230b9f2b6..edb14a0740 100644
--- a/public/v2/i18n/pl.json
+++ b/public/v2/i18n/pl.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Jeste\u015b d\u0142u\u017cny",
+ "liability_direction_credit_short": "D\u0142ug wobec Ciebie",
+ "interest_calc_yearly": "Co rok",
+ "interest_calc_": "nieznany",
+ "interest_calc_daily": "Co dzie\u0144",
+ "interest_calc_monthly": "Co miesi\u0105c",
+ "interest_calc_weekly": "Tygodniowo",
+ "interest_calc_half-year": "Co p\u00f3\u0142 roku",
+ "interest_calc_quarterly": "Kwartalnie",
"spent": "Wydano",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/pl_PL.json b/public/v2/i18n/pl_PL.json
index 1230b9f2b6..edb14a0740 100644
--- a/public/v2/i18n/pl_PL.json
+++ b/public/v2/i18n/pl_PL.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Jeste\u015b d\u0142u\u017cny",
+ "liability_direction_credit_short": "D\u0142ug wobec Ciebie",
+ "interest_calc_yearly": "Co rok",
+ "interest_calc_": "nieznany",
+ "interest_calc_daily": "Co dzie\u0144",
+ "interest_calc_monthly": "Co miesi\u0105c",
+ "interest_calc_weekly": "Tygodniowo",
+ "interest_calc_half-year": "Co p\u00f3\u0142 roku",
+ "interest_calc_quarterly": "Kwartalnie",
"spent": "Wydano",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/pt-br.json b/public/v2/i18n/pt-br.json
index 61bd41c746..5602469f64 100644
--- a/public/v2/i18n/pt-br.json
+++ b/public/v2/i18n/pt-br.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III n\u00e3o conseguiu determinar o tipo de transa\u00e7\u00e3o baseado nesta conta destino."
},
"firefly": {
+ "liability_direction_debit_short": "Devo essa d\u00edvida",
+ "liability_direction_credit_short": "Devo receber essa d\u00edvida",
+ "interest_calc_yearly": "Por ano",
+ "interest_calc_": "desconhecido",
+ "interest_calc_daily": "Por dia",
+ "interest_calc_monthly": "Por m\u00eas",
+ "interest_calc_weekly": "Por semana",
+ "interest_calc_half-year": "Por semestre",
+ "interest_calc_quarterly": "Por trimestre",
"spent": "Gasto",
"administration_owner": "Propriet\u00e1rio da administra\u00e7\u00e3o: {{email}}",
"administration_you": "Sua fun\u00e7\u00e3o: {{role}}",
diff --git a/public/v2/i18n/pt.json b/public/v2/i18n/pt.json
index e7c3ec0e6a..35aca3c117 100644
--- a/public/v2/i18n/pt.json
+++ b/public/v2/i18n/pt.json
@@ -27,6 +27,15 @@
"bad_type_destination": "O Firefly III n\u00e3o consegue determinar o tipo de transa\u00e7\u00e3o baseado nesta conta de destino."
},
"firefly": {
+ "liability_direction_debit_short": "Devo esta d\u00edvida",
+ "liability_direction_credit_short": "Devem-me esta d\u00edvida",
+ "interest_calc_yearly": "Por ano",
+ "interest_calc_": "desconhecido",
+ "interest_calc_daily": "Por dia",
+ "interest_calc_monthly": "Por m\u00eas",
+ "interest_calc_weekly": "Por semana",
+ "interest_calc_half-year": "Por semestre",
+ "interest_calc_quarterly": "Por trimestre",
"spent": "Gasto",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/pt_BR.json b/public/v2/i18n/pt_BR.json
index 61bd41c746..5602469f64 100644
--- a/public/v2/i18n/pt_BR.json
+++ b/public/v2/i18n/pt_BR.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III n\u00e3o conseguiu determinar o tipo de transa\u00e7\u00e3o baseado nesta conta destino."
},
"firefly": {
+ "liability_direction_debit_short": "Devo essa d\u00edvida",
+ "liability_direction_credit_short": "Devo receber essa d\u00edvida",
+ "interest_calc_yearly": "Por ano",
+ "interest_calc_": "desconhecido",
+ "interest_calc_daily": "Por dia",
+ "interest_calc_monthly": "Por m\u00eas",
+ "interest_calc_weekly": "Por semana",
+ "interest_calc_half-year": "Por semestre",
+ "interest_calc_quarterly": "Por trimestre",
"spent": "Gasto",
"administration_owner": "Propriet\u00e1rio da administra\u00e7\u00e3o: {{email}}",
"administration_you": "Sua fun\u00e7\u00e3o: {{role}}",
diff --git a/public/v2/i18n/pt_PT.json b/public/v2/i18n/pt_PT.json
index e7c3ec0e6a..35aca3c117 100644
--- a/public/v2/i18n/pt_PT.json
+++ b/public/v2/i18n/pt_PT.json
@@ -27,6 +27,15 @@
"bad_type_destination": "O Firefly III n\u00e3o consegue determinar o tipo de transa\u00e7\u00e3o baseado nesta conta de destino."
},
"firefly": {
+ "liability_direction_debit_short": "Devo esta d\u00edvida",
+ "liability_direction_credit_short": "Devem-me esta d\u00edvida",
+ "interest_calc_yearly": "Por ano",
+ "interest_calc_": "desconhecido",
+ "interest_calc_daily": "Por dia",
+ "interest_calc_monthly": "Por m\u00eas",
+ "interest_calc_weekly": "Por semana",
+ "interest_calc_half-year": "Por semestre",
+ "interest_calc_quarterly": "Por trimestre",
"spent": "Gasto",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ro.json b/public/v2/i18n/ro.json
index 4920e64bba..67a63b18e1 100644
--- a/public/v2/i18n/ro.json
+++ b/public/v2/i18n/ro.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III nu poate determina tipul de tranzac\u021bie bazat pe acest cont de destina\u021bie."
},
"firefly": {
+ "liability_direction_debit_short": "Creditor",
+ "liability_direction_credit_short": "\u00cendatorat",
+ "interest_calc_yearly": "Pe an",
+ "interest_calc_": "necunoscut",
+ "interest_calc_daily": "Pe zi",
+ "interest_calc_monthly": "Pe lun\u0103",
+ "interest_calc_weekly": "Pe s\u0103pt\u0103m\u00e2n\u0103",
+ "interest_calc_half-year": "Pe jum\u0103tate de an",
+ "interest_calc_quarterly": "Pe trimestru",
"spent": "Cheltuit",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ro_RO.json b/public/v2/i18n/ro_RO.json
index 4920e64bba..67a63b18e1 100644
--- a/public/v2/i18n/ro_RO.json
+++ b/public/v2/i18n/ro_RO.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III nu poate determina tipul de tranzac\u021bie bazat pe acest cont de destina\u021bie."
},
"firefly": {
+ "liability_direction_debit_short": "Creditor",
+ "liability_direction_credit_short": "\u00cendatorat",
+ "interest_calc_yearly": "Pe an",
+ "interest_calc_": "necunoscut",
+ "interest_calc_daily": "Pe zi",
+ "interest_calc_monthly": "Pe lun\u0103",
+ "interest_calc_weekly": "Pe s\u0103pt\u0103m\u00e2n\u0103",
+ "interest_calc_half-year": "Pe jum\u0103tate de an",
+ "interest_calc_quarterly": "Pe trimestru",
"spent": "Cheltuit",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/ru.json b/public/v2/i18n/ru.json
index a20e7244da..9811889dae 100644
--- a/public/v2/i18n/ru.json
+++ b/public/v2/i18n/ru.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u0442\u0438\u043f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u044d\u0442\u043e\u0433\u043e \u0441\u0447\u0435\u0442\u0430."
},
"firefly": {
+ "liability_direction_debit_short": "\u042f \u0434\u043e\u043b\u0436\u0435\u043d",
+ "liability_direction_credit_short": "\u041c\u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b",
+ "interest_calc_yearly": "\u0412 \u0433\u043e\u0434",
+ "interest_calc_": "\u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e",
+ "interest_calc_daily": "\u0412 \u0434\u0435\u043d\u044c",
+ "interest_calc_monthly": "\u0412 \u043c\u0435\u0441\u044f\u0446",
+ "interest_calc_weekly": "\u0417\u0430 \u043d\u0435\u0434\u0435\u043b\u044e",
+ "interest_calc_half-year": "\u0417\u0430 \u043f\u043e\u043b\u0433\u043e\u0434\u0430",
+ "interest_calc_quarterly": "\u0417\u0430 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
"administration_owner": "\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f: {{email}}",
"administration_you": "\u0412\u0430\u0448\u0430 \u0440\u043e\u043b\u044c: {{role}}",
diff --git a/public/v2/i18n/ru_RU.json b/public/v2/i18n/ru_RU.json
index a20e7244da..9811889dae 100644
--- a/public/v2/i18n/ru_RU.json
+++ b/public/v2/i18n/ru_RU.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u0442\u0438\u043f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u044d\u0442\u043e\u0433\u043e \u0441\u0447\u0435\u0442\u0430."
},
"firefly": {
+ "liability_direction_debit_short": "\u042f \u0434\u043e\u043b\u0436\u0435\u043d",
+ "liability_direction_credit_short": "\u041c\u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b",
+ "interest_calc_yearly": "\u0412 \u0433\u043e\u0434",
+ "interest_calc_": "\u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e",
+ "interest_calc_daily": "\u0412 \u0434\u0435\u043d\u044c",
+ "interest_calc_monthly": "\u0412 \u043c\u0435\u0441\u044f\u0446",
+ "interest_calc_weekly": "\u0417\u0430 \u043d\u0435\u0434\u0435\u043b\u044e",
+ "interest_calc_half-year": "\u0417\u0430 \u043f\u043e\u043b\u0433\u043e\u0434\u0430",
+ "interest_calc_quarterly": "\u0417\u0430 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
"administration_owner": "\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f: {{email}}",
"administration_you": "\u0412\u0430\u0448\u0430 \u0440\u043e\u043b\u044c: {{role}}",
diff --git a/public/v2/i18n/sk.json b/public/v2/i18n/sk.json
index 7b79902d78..b2044c20f5 100644
--- a/public/v2/i18n/sk.json
+++ b/public/v2/i18n/sk.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Za rok",
+ "interest_calc_": "nezn\u00e1me",
+ "interest_calc_daily": "Za de\u0148",
+ "interest_calc_monthly": "Za mesiac",
+ "interest_calc_weekly": "Za t\u00fd\u017ede\u0148",
+ "interest_calc_half-year": "Za polrok",
+ "interest_calc_quarterly": "Za \u0161tvr\u0165rok",
"spent": "Utraten\u00e9",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/sk_SK.json b/public/v2/i18n/sk_SK.json
index 7b79902d78..b2044c20f5 100644
--- a/public/v2/i18n/sk_SK.json
+++ b/public/v2/i18n/sk_SK.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Za rok",
+ "interest_calc_": "nezn\u00e1me",
+ "interest_calc_daily": "Za de\u0148",
+ "interest_calc_monthly": "Za mesiac",
+ "interest_calc_weekly": "Za t\u00fd\u017ede\u0148",
+ "interest_calc_half-year": "Za polrok",
+ "interest_calc_quarterly": "Za \u0161tvr\u0165rok",
"spent": "Utraten\u00e9",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/sl.json b/public/v2/i18n/sl.json
index 49387a7b37..378203884e 100644
--- a/public/v2/i18n/sl.json
+++ b/public/v2/i18n/sl.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Na podlagi tega ciljnega ra\u010duna Firefly III ne more dolo\u010diti vrste transakcije."
},
"firefly": {
+ "liability_direction_debit_short": "Dolgujem",
+ "liability_direction_credit_short": "Ta dolg je bil dolgovan",
+ "interest_calc_yearly": "Na leto",
+ "interest_calc_": "neznano",
+ "interest_calc_daily": "Na dan",
+ "interest_calc_monthly": "Na mesec",
+ "interest_calc_weekly": "Tedensko",
+ "interest_calc_half-year": "Na pol leta",
+ "interest_calc_quarterly": "Na \u010detrtletje",
"spent": "Porabljeno",
"administration_owner": "Lastnik administracije: {{email}}",
"administration_you": "Va\u0161a vloga: {{role}}",
diff --git a/public/v2/i18n/sl_SI.json b/public/v2/i18n/sl_SI.json
index 49387a7b37..378203884e 100644
--- a/public/v2/i18n/sl_SI.json
+++ b/public/v2/i18n/sl_SI.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Na podlagi tega ciljnega ra\u010duna Firefly III ne more dolo\u010diti vrste transakcije."
},
"firefly": {
+ "liability_direction_debit_short": "Dolgujem",
+ "liability_direction_credit_short": "Ta dolg je bil dolgovan",
+ "interest_calc_yearly": "Na leto",
+ "interest_calc_": "neznano",
+ "interest_calc_daily": "Na dan",
+ "interest_calc_monthly": "Na mesec",
+ "interest_calc_weekly": "Tedensko",
+ "interest_calc_half-year": "Na pol leta",
+ "interest_calc_quarterly": "Na \u010detrtletje",
"spent": "Porabljeno",
"administration_owner": "Lastnik administracije: {{email}}",
"administration_you": "Va\u0161a vloga: {{role}}",
diff --git a/public/v2/i18n/sv.json b/public/v2/i18n/sv.json
index 9067ae84eb..528ebc8b92 100644
--- a/public/v2/i18n/sv.json
+++ b/public/v2/i18n/sv.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\u00c4ger denna skuld",
+ "liability_direction_credit_short": "\u00c4gde denna skuld",
+ "interest_calc_yearly": "Per \u00e5r",
+ "interest_calc_": "ok\u00e4nd",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per m\u00e5nad",
+ "interest_calc_weekly": "Per vecka",
+ "interest_calc_half-year": "Per halv\u00e5r",
+ "interest_calc_quarterly": "Per kvartal",
"spent": "Spenderat",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Din roll: {{role}}",
diff --git a/public/v2/i18n/sv_SE.json b/public/v2/i18n/sv_SE.json
index 9067ae84eb..528ebc8b92 100644
--- a/public/v2/i18n/sv_SE.json
+++ b/public/v2/i18n/sv_SE.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "\u00c4ger denna skuld",
+ "liability_direction_credit_short": "\u00c4gde denna skuld",
+ "interest_calc_yearly": "Per \u00e5r",
+ "interest_calc_": "ok\u00e4nd",
+ "interest_calc_daily": "Per dag",
+ "interest_calc_monthly": "Per m\u00e5nad",
+ "interest_calc_weekly": "Per vecka",
+ "interest_calc_half-year": "Per halv\u00e5r",
+ "interest_calc_quarterly": "Per kvartal",
"spent": "Spenderat",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Din roll: {{role}}",
diff --git a/public/v2/i18n/tr.json b/public/v2/i18n/tr.json
index 20d1d3aa27..cd918ac185 100644
--- a/public/v2/i18n/tr.json
+++ b/public/v2/i18n/tr.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Harcanan",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/tr_TR.json b/public/v2/i18n/tr_TR.json
index 20d1d3aa27..cd918ac185 100644
--- a/public/v2/i18n/tr_TR.json
+++ b/public/v2/i18n/tr_TR.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "Per day",
+ "interest_calc_monthly": "Per month",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Harcanan",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/uk.json b/public/v2/i18n/uk.json
index 019d03bb70..4f6622d61b 100644
--- a/public/v2/i18n/uk.json
+++ b/public/v2/i18n/uk.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "\u0417\u0430 \u0434\u0435\u043d\u044c",
+ "interest_calc_monthly": "\u0417\u0430 \u043c\u0456\u0441\u044f\u0446\u044c",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/uk_UA.json b/public/v2/i18n/uk_UA.json
index 019d03bb70..4f6622d61b 100644
--- a/public/v2/i18n/uk_UA.json
+++ b/public/v2/i18n/uk_UA.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "Per year",
+ "interest_calc_": "unknown",
+ "interest_calc_daily": "\u0417\u0430 \u0434\u0435\u043d\u044c",
+ "interest_calc_monthly": "\u0417\u0430 \u043c\u0456\u0441\u044f\u0446\u044c",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "Spent",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/vi.json b/public/v2/i18n/vi.json
index 36e41a52ec..79f9c1d433 100644
--- a/public/v2/i18n/vi.json
+++ b/public/v2/i18n/vi.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "M\u1ed7i n\u0103m",
+ "interest_calc_": "kh\u00f4ng x\u00e1c \u0111\u1ecbnh",
+ "interest_calc_daily": "M\u1ed7i ng\u00e0y",
+ "interest_calc_monthly": "M\u1ed7i th\u00e1ng",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "\u0110\u00e3 chi",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/vi_VN.json b/public/v2/i18n/vi_VN.json
index 36e41a52ec..79f9c1d433 100644
--- a/public/v2/i18n/vi_VN.json
+++ b/public/v2/i18n/vi_VN.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "M\u1ed7i n\u0103m",
+ "interest_calc_": "kh\u00f4ng x\u00e1c \u0111\u1ecbnh",
+ "interest_calc_daily": "M\u1ed7i ng\u00e0y",
+ "interest_calc_monthly": "M\u1ed7i th\u00e1ng",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "\u0110\u00e3 chi",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/zh-cn.json b/public/v2/i18n/zh-cn.json
index 2b7a83f2ce..310d92db52 100644
--- a/public/v2/i18n/zh-cn.json
+++ b/public/v2/i18n/zh-cn.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III \u65e0\u6cd5\u786e\u5b9a\u57fa\u4e8e\u6b64\u76ee\u6807\u5e10\u6237\u7684\u4ea4\u6613\u7c7b\u578b\u3002"
},
"firefly": {
+ "liability_direction_debit_short": "\u6b20\u6b3e",
+ "liability_direction_credit_short": "\u501f\u6b3e",
+ "interest_calc_yearly": "\u6bcf\u5e74",
+ "interest_calc_": "\u672a\u77e5",
+ "interest_calc_daily": "\u6bcf\u65e5",
+ "interest_calc_monthly": "\u6bcf\u6708",
+ "interest_calc_weekly": "\u6bcf\u5468",
+ "interest_calc_half-year": "\u6bcf\u534a\u5e74",
+ "interest_calc_quarterly": "\u6bcf\u5b63\u5ea6",
"spent": "\u652f\u51fa",
"administration_owner": "\u7ba1\u7406\u5458\u5f52\u5c5e: {{email}}",
"administration_you": "\u4f60\u7684\u89d2\u8272: {{role}}",
diff --git a/public/v2/i18n/zh-tw.json b/public/v2/i18n/zh-tw.json
index f2f27247db..222b0cdde1 100644
--- a/public/v2/i18n/zh-tw.json
+++ b/public/v2/i18n/zh-tw.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "\u6bcf\u5e74",
+ "interest_calc_": "\u672a\u77e5",
+ "interest_calc_daily": "\u6bcf\u65e5",
+ "interest_calc_monthly": "\u6bcf\u6708",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/public/v2/i18n/zh_CN.json b/public/v2/i18n/zh_CN.json
index 2b7a83f2ce..310d92db52 100644
--- a/public/v2/i18n/zh_CN.json
+++ b/public/v2/i18n/zh_CN.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III \u65e0\u6cd5\u786e\u5b9a\u57fa\u4e8e\u6b64\u76ee\u6807\u5e10\u6237\u7684\u4ea4\u6613\u7c7b\u578b\u3002"
},
"firefly": {
+ "liability_direction_debit_short": "\u6b20\u6b3e",
+ "liability_direction_credit_short": "\u501f\u6b3e",
+ "interest_calc_yearly": "\u6bcf\u5e74",
+ "interest_calc_": "\u672a\u77e5",
+ "interest_calc_daily": "\u6bcf\u65e5",
+ "interest_calc_monthly": "\u6bcf\u6708",
+ "interest_calc_weekly": "\u6bcf\u5468",
+ "interest_calc_half-year": "\u6bcf\u534a\u5e74",
+ "interest_calc_quarterly": "\u6bcf\u5b63\u5ea6",
"spent": "\u652f\u51fa",
"administration_owner": "\u7ba1\u7406\u5458\u5f52\u5c5e: {{email}}",
"administration_you": "\u4f60\u7684\u89d2\u8272: {{role}}",
diff --git a/public/v2/i18n/zh_TW.json b/public/v2/i18n/zh_TW.json
index f2f27247db..222b0cdde1 100644
--- a/public/v2/i18n/zh_TW.json
+++ b/public/v2/i18n/zh_TW.json
@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
},
"firefly": {
+ "liability_direction_debit_short": "Owe this debt",
+ "liability_direction_credit_short": "Owed this debt",
+ "interest_calc_yearly": "\u6bcf\u5e74",
+ "interest_calc_": "\u672a\u77e5",
+ "interest_calc_daily": "\u6bcf\u65e5",
+ "interest_calc_monthly": "\u6bcf\u6708",
+ "interest_calc_weekly": "Per week",
+ "interest_calc_half-year": "Per half year",
+ "interest_calc_quarterly": "Per quarter",
"spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}",
diff --git a/resources/assets/v1/src/locales/tr.json b/resources/assets/v1/src/locales/tr.json
index f83416b8d7..c4fc71fa5c 100644
--- a/resources/assets/v1/src/locales/tr.json
+++ b/resources/assets/v1/src/locales/tr.json
@@ -97,25 +97,25 @@
"multi_account_warning_withdrawal": "Sonraki b\u00f6l\u00fcnmelerin kaynak hesab\u0131n\u0131n, geri \u00e7ekilmenin ilk b\u00f6l\u00fcnmesinde tan\u0131mlanan herhangi bir \u015fey taraf\u0131ndan reddedilece\u011fini unutmay\u0131n.",
"multi_account_warning_deposit": "Sonraki b\u00f6l\u00fcnmelerin hedef hesab\u0131n\u0131n, mevduat\u0131n ilk b\u00f6l\u00fcnmesinde tan\u0131mlanan herhangi bir \u015fey taraf\u0131ndan iptal edilece\u011fini unutmay\u0131n.",
"multi_account_warning_transfer": "Sonraki b\u00f6l\u00fcnmelerin kaynak + hedef hesab\u0131n\u0131n, aktar\u0131m\u0131n ilk b\u00f6l\u00fcnmesinde tan\u0131mlanan her \u015fey taraf\u0131ndan ge\u00e7ersiz k\u0131l\u0131naca\u011f\u0131n\u0131 unutmay\u0131n.",
- "webhook_trigger_STORE_TRANSACTION": "After transaction creation",
- "webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
- "webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
- "webhook_response_TRANSACTIONS": "Transaction details",
- "webhook_response_ACCOUNTS": "Account details",
- "webhook_response_none_NONE": "No details",
+ "webhook_trigger_STORE_TRANSACTION": "\u0130\u015flem olu\u015fturma sonras\u0131",
+ "webhook_trigger_UPDATE_TRANSACTION": "\u0130\u015flem g\u00fcncelleme sonras\u0131",
+ "webhook_trigger_DESTROY_TRANSACTION": "\u0130\u015flem silme sonras\u0131",
+ "webhook_response_TRANSACTIONS": "\u0130\u015flem detaylar\u0131",
+ "webhook_response_ACCOUNTS": "Hesap detaylar\u0131",
+ "webhook_response_none_NONE": "Detay yok",
"webhook_delivery_JSON": "JSON",
"actions": "Eylemler",
"meta_data": "Meta veri",
"webhook_messages": "Webhook message",
"inactive": "Etkisiz",
- "no_webhook_messages": "There are no webhook messages",
- "inspect": "Inspect",
- "create_new_webhook": "Create new webhook",
+ "no_webhook_messages": "Webhook mesaj\u0131 yok",
+ "inspect": "\u0130ncele",
+ "create_new_webhook": "Yeni webhook olu\u015ftur",
"webhooks": "Web kancalar\u0131",
- "webhook_trigger_form_help": "Indicate on what event the webhook will trigger",
- "webhook_response_form_help": "Indicate what the webhook must submit to the URL.",
- "webhook_delivery_form_help": "Which format the webhook must deliver data in.",
- "webhook_active_form_help": "The webhook must be active or it won't be called.",
+ "webhook_trigger_form_help": "Webhook'un hangi olay\u0131 tetikleyece\u011fini belirtin",
+ "webhook_response_form_help": "Webhook'un URL'ye ne g\u00f6ndermesi gerekti\u011fini belirleyin.",
+ "webhook_delivery_form_help": "Webhook'un verileri hangi formatta iletmesi gerek.",
+ "webhook_active_form_help": "Webhook'un etkin olmas\u0131 gerekir, aksi takdirde \u00e7a\u011fr\u0131lmaz.",
"edit_webhook_js": "Edit webhook \"{title}\"",
"webhook_was_triggered": "The webhook was triggered on the indicated transaction. Please wait for results to appear.",
"view_message": "View message",
diff --git a/resources/lang/bg_BG/firefly.php b/resources/lang/bg_BG/firefly.php
index b1bfa8e1c6..5a3e8c7197 100644
--- a/resources/lang/bg_BG/firefly.php
+++ b/resources/lang/bg_BG/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(без етикети)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Добавете пари към касичка ":name"',
diff --git a/resources/lang/bg_BG/form.php b/resources/lang/bg_BG/form.php
index 92d192c65a..40ea877d62 100644
--- a/resources/lang/bg_BG/form.php
+++ b/resources/lang/bg_BG/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Име на банката',
'bank_balance' => 'Салдо',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Спестявания',
'credit_card_limit' => 'Лимит по кредитна карта',
'automatch' => 'Автоматично съчетаване',
diff --git a/resources/lang/ca_ES/firefly.php b/resources/lang/ca_ES/firefly.php
index 2757ff3286..0bf0b9ab7b 100644
--- a/resources/lang/ca_ES/firefly.php
+++ b/resources/lang/ca_ES/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(cap etiqueta)',
'nothing_found' => '(no s\'ha trobat res)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Historial d\'esdeveniments',
'add_money_to_piggy' => 'Afegeix diners a la guardiola ":name"',
diff --git a/resources/lang/ca_ES/form.php b/resources/lang/ca_ES/form.php
index 5fc9ae32f2..d7a11ac1b0 100644
--- a/resources/lang/ca_ES/form.php
+++ b/resources/lang/ca_ES/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nom del banc',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo d\'estalvis',
'credit_card_limit' => 'Límit de la targeta de crèdit',
'automatch' => 'Coincidir automàticament',
diff --git a/resources/lang/cs_CZ/firefly.php b/resources/lang/cs_CZ/firefly.php
index ca7d8bf1c1..4275ff5cb9 100644
--- a/resources/lang/cs_CZ/firefly.php
+++ b/resources/lang/cs_CZ/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(žádné štítky)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Vložit peníze do pokladničky ":name"',
diff --git a/resources/lang/cs_CZ/form.php b/resources/lang/cs_CZ/form.php
index 5d6eaf3ac1..0a207bb4cf 100644
--- a/resources/lang/cs_CZ/form.php
+++ b/resources/lang/cs_CZ/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Název banky',
'bank_balance' => 'Zůstatek',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Zůstatek úspor',
'credit_card_limit' => 'Limit kreditní karty',
'automatch' => 'Hledat shodu automaticky',
diff --git a/resources/lang/da_DK/firefly.php b/resources/lang/da_DK/firefly.php
index ce69eafe69..5dc917fadd 100644
--- a/resources/lang/da_DK/firefly.php
+++ b/resources/lang/da_DK/firefly.php
@@ -511,13 +511,13 @@ return [
'search_modifier_category_ends' => 'Kategori slutter med ":value"',
'search_modifier_not_category_ends' => 'Kategori slutter ikke med ":value"',
'search_modifier_category_starts' => 'Kategori starter med ":value"',
- 'search_modifier_not_category_starts' => 'Category does not start with ":value"',
+ 'search_modifier_not_category_starts' => 'Kategori begynder ikke med ":value"',
'search_modifier_budget_contains' => 'Budget indeholder ":value"',
- 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"',
+ 'search_modifier_not_budget_contains' => 'Budget indeholder ikke ":value"',
'search_modifier_budget_ends' => 'Budget slutter med ":value"',
- 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"',
+ 'search_modifier_not_budget_ends' => 'Budget slutter ikke med ":value"',
'search_modifier_budget_starts' => 'Budget starter med ":value"',
- 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"',
+ 'search_modifier_not_budget_starts' => 'Budget begynder ikke med ":value"',
'search_modifier_bill_contains' => 'Regningen indeholder ":value"',
'search_modifier_not_bill_contains' => 'Bill does not contain ":value"',
'search_modifier_bill_ends' => 'Bill slutter med ":value"',
@@ -1153,8 +1153,8 @@ return [
'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"',
'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"',
'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"',
- 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"',
- 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"',
+ 'rule_trigger_not_currency_is' => 'Valuta er ikke ":trigger_value"',
+ 'rule_trigger_not_foreign_currency_is' => 'Fremmed valuta er ikke ":trigger_value"',
'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"',
'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"',
'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"',
@@ -1676,7 +1676,7 @@ return [
'create_currency' => 'Opret en ny valuta',
'store_currency' => 'Gem ny valuta',
'update_currency' => 'Opdater valuta',
- 'new_default_currency' => '":name" is now the default currency.',
+ 'new_default_currency' => '":name" er nu standard valuta.',
'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.',
'cannot_delete_currency' => 'Kan ikke slette :name , fordi den stadig er i brug.',
'cannot_delete_fallback_currency' => ':name er systemet fallback valuta og kan ikke slettes.',
@@ -2152,7 +2152,7 @@ return [
'select_period' => 'Select a period',
// menu and titles, should be recycled as often as possible:
- 'currency' => 'Currency',
+ 'currency' => 'Valuta',
'preferences' => 'Preferences',
'logout' => 'Logout',
'logout_other_sessions' => 'Logout all other sessions',
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ingen mærker)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Tilføj penge til sparegrisen ":name"',
@@ -2710,7 +2720,7 @@ return [
'create_new_recurrence' => 'Create new recurring transaction',
'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.',
'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.',
- 'no_currency' => '(no currency)',
+ 'no_currency' => '(ingen valuta)',
'mandatory_for_recurring' => 'Mandatory recurrence information',
'mandatory_for_transaction' => 'Mandatory transaction information',
'optional_for_recurring' => 'Optional recurrence information',
@@ -2756,10 +2766,10 @@ return [
*/
// new lines for summary controller.
- 'box_balance_in_currency' => 'Balance (:currency)',
- 'box_spent_in_currency' => 'Spent (:currency)',
+ 'box_balance_in_currency' => 'Saldo (:currency)',
+ 'box_spent_in_currency' => 'Forbrug (:currency)',
'box_earned_in_currency' => 'Earned (:currency)',
- 'box_budgeted_in_currency' => 'Budgeted (:currency)',
+ 'box_budgeted_in_currency' => 'Budgetteret (:currency)',
'box_bill_paid_in_currency' => 'Betalte regninger (:currency)',
'box_bill_unpaid_in_currency' => 'Ubetalte regninger (:currency)',
'box_left_to_spend_in_currency' => 'Left to spend (:currency)',
@@ -2817,8 +2827,8 @@ return [
'ale_action_update_amount' => 'Updated amount',
// dashboard
- 'enable_auto_convert' => 'Enable currency conversion',
- 'disable_auto_convert' => 'Disable currency conversion',
+ 'enable_auto_convert' => 'Aktiver valutakonvertering',
+ 'disable_auto_convert' => 'Deaktivér valutakonvertering',
];
/*
diff --git a/resources/lang/da_DK/form.php b/resources/lang/da_DK/form.php
index ec5c19bde5..46ab1cb72a 100644
--- a/resources/lang/da_DK/form.php
+++ b/resources/lang/da_DK/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Bank navn',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo for opsparingskonto',
'credit_card_limit' => 'Kreditkort grænse',
'automatch' => 'Automatisk afstemning',
diff --git a/resources/lang/de_DE/firefly.php b/resources/lang/de_DE/firefly.php
index 22f7c37766..6bab94b0e3 100644
--- a/resources/lang/de_DE/firefly.php
+++ b/resources/lang/de_DE/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(keine Schlagwörter)',
'nothing_found' => '(nichts gefunden)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Ereignisverlauf',
'add_money_to_piggy' => 'Geld zum Sparschwein „:name” übertragen',
diff --git a/resources/lang/de_DE/form.php b/resources/lang/de_DE/form.php
index 220bc87957..7da3b26189 100644
--- a/resources/lang/de_DE/form.php
+++ b/resources/lang/de_DE/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Name der Bank',
'bank_balance' => 'Kontostand',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Sparguthaben',
'credit_card_limit' => 'Kreditkartenlimit',
'automatch' => 'Automatisch reagieren',
diff --git a/resources/lang/el_GR/firefly.php b/resources/lang/el_GR/firefly.php
index df7d2cf423..892cd69fa4 100644
--- a/resources/lang/el_GR/firefly.php
+++ b/resources/lang/el_GR/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(χωρίς ετικέτες)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"',
diff --git a/resources/lang/el_GR/form.php b/resources/lang/el_GR/form.php
index 9a845e7eeb..8d63af9034 100644
--- a/resources/lang/el_GR/form.php
+++ b/resources/lang/el_GR/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Όνομα τράπεζας',
'bank_balance' => 'Υπόλοιπο',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Υπόλοιπο αποταμιεύσεων',
'credit_card_limit' => 'Όριο πιστωτικής κάρτας',
'automatch' => 'Αυτόματο ταίριασμα',
diff --git a/resources/lang/en_GB/firefly.php b/resources/lang/en_GB/firefly.php
index 991fbbd0ad..dedd68e700 100644
--- a/resources/lang/en_GB/firefly.php
+++ b/resources/lang/en_GB/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"',
diff --git a/resources/lang/en_GB/form.php b/resources/lang/en_GB/form.php
index be20349269..296daef599 100644
--- a/resources/lang/en_GB/form.php
+++ b/resources/lang/en_GB/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Bank name',
'bank_balance' => 'Balance',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Savings balance',
'credit_card_limit' => 'Credit card limit',
'automatch' => 'Match automatically',
diff --git a/resources/lang/en_US/form.php b/resources/lang/en_US/form.php
index b3590f715a..5e6ab8d583 100644
--- a/resources/lang/en_US/form.php
+++ b/resources/lang/en_US/form.php
@@ -28,7 +28,7 @@ return [
// new user:
'bank_name' => 'Bank name',
'bank_balance' => 'Balance',
- 'current_balance' => 'Current balance',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Savings balance',
'credit_card_limit' => 'Credit card limit',
'automatch' => 'Match automatically',
diff --git a/resources/lang/es_ES/firefly.php b/resources/lang/es_ES/firefly.php
index bdf09db445..7f83be2410 100644
--- a/resources/lang/es_ES/firefly.php
+++ b/resources/lang/es_ES/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(sin etiquetas)',
'nothing_found' => '(no se encontró nada)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Historial de eventos',
'add_money_to_piggy' => 'Añadir dinero a la hucha ":name"',
diff --git a/resources/lang/es_ES/form.php b/resources/lang/es_ES/form.php
index 2d9bcf03ca..a3cc2d978d 100644
--- a/resources/lang/es_ES/form.php
+++ b/resources/lang/es_ES/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Banco',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo de ahorro',
'credit_card_limit' => 'Límite de la tarjeta de crédito',
'automatch' => 'Coinciden automáticamente',
diff --git a/resources/lang/fi_FI/firefly.php b/resources/lang/fi_FI/firefly.php
index 6dc98046d6..ac68c130ed 100644
--- a/resources/lang/fi_FI/firefly.php
+++ b/resources/lang/fi_FI/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ei tägejä)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Lisää rahaa säästöpossuun ":name"',
diff --git a/resources/lang/fi_FI/form.php b/resources/lang/fi_FI/form.php
index 914914b845..40d4390ad3 100644
--- a/resources/lang/fi_FI/form.php
+++ b/resources/lang/fi_FI/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Pankin nimi',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Säästötilien saldo',
'credit_card_limit' => 'Luottoraja',
'automatch' => 'Vertaile automaattisesti',
diff --git a/resources/lang/fr_FR/firefly.php b/resources/lang/fr_FR/firefly.php
index e8002f20e3..c400ee0d96 100644
--- a/resources/lang/fr_FR/firefly.php
+++ b/resources/lang/fr_FR/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(pas de mot-clé)',
'nothing_found' => '(aucun résultat)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Historique des événements',
'add_money_to_piggy' => 'Ajouter de l’argent à la tirelire ":name"',
diff --git a/resources/lang/fr_FR/form.php b/resources/lang/fr_FR/form.php
index a857188608..ee66e24a50 100644
--- a/resources/lang/fr_FR/form.php
+++ b/resources/lang/fr_FR/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nom de la banque',
'bank_balance' => 'Solde',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Solde de l\'épargne',
'credit_card_limit' => 'Limite de carte de crédit',
'automatch' => 'Correspondre automatiquement',
diff --git a/resources/lang/hu_HU/firefly.php b/resources/lang/hu_HU/firefly.php
index 654714654a..46b983f5f6 100644
--- a/resources/lang/hu_HU/firefly.php
+++ b/resources/lang/hu_HU/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(nincsenek címkék)',
'nothing_found' => '(nincs találat)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Pénz hozzáadása ":name" malacperselyhez',
diff --git a/resources/lang/hu_HU/form.php b/resources/lang/hu_HU/form.php
index c0d5e78d87..268b5fd4a8 100644
--- a/resources/lang/hu_HU/form.php
+++ b/resources/lang/hu_HU/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Bank neve',
'bank_balance' => 'Egyenleg',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Megtakarítási egyenleg',
'credit_card_limit' => 'Hitelkártya limit',
'automatch' => 'Automatikus egyezés',
diff --git a/resources/lang/id_ID/firefly.php b/resources/lang/id_ID/firefly.php
index 773e72ec94..4c85fcd312 100644
--- a/resources/lang/id_ID/firefly.php
+++ b/resources/lang/id_ID/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Tambahkan uang ke celengan ":name"',
diff --git a/resources/lang/id_ID/form.php b/resources/lang/id_ID/form.php
index 53d7da80bc..ae98065312 100644
--- a/resources/lang/id_ID/form.php
+++ b/resources/lang/id_ID/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nama Bank',
'bank_balance' => 'Keseimbangan',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo tabungan',
'credit_card_limit' => 'Batas kartu kredit',
'automatch' => 'Cocokkan secara otomatis',
diff --git a/resources/lang/it_IT/firefly.php b/resources/lang/it_IT/firefly.php
index 616495439d..a10cfd884c 100644
--- a/resources/lang/it_IT/firefly.php
+++ b/resources/lang/it_IT/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(nessuna etichetta)',
'nothing_found' => '(nessun risultato)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Storico eventi',
'add_money_to_piggy' => 'Aggiungi denaro al salvadanaio":name"',
diff --git a/resources/lang/it_IT/form.php b/resources/lang/it_IT/form.php
index 92bf67158b..31f40b4eeb 100644
--- a/resources/lang/it_IT/form.php
+++ b/resources/lang/it_IT/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nome banca',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo risparmi',
'credit_card_limit' => 'Limite carta di credito',
'automatch' => 'Abbina automaticamente',
diff --git a/resources/lang/ja_JP/firefly.php b/resources/lang/ja_JP/firefly.php
index a1984b9588..a5ca8fa307 100644
--- a/resources/lang/ja_JP/firefly.php
+++ b/resources/lang/ja_JP/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(タグなし)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'イベント履歴',
'add_money_to_piggy' => '貯金箱「:name」にお金を追加',
diff --git a/resources/lang/ja_JP/form.php b/resources/lang/ja_JP/form.php
index f3ec3605b0..7a43a21b35 100644
--- a/resources/lang/ja_JP/form.php
+++ b/resources/lang/ja_JP/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => '銀行名',
'bank_balance' => '残高',
+ 'current_balance' => 'Current balance',
'savings_balance' => '貯金残高',
'credit_card_limit' => 'クレジットカード上限額',
'automatch' => '自動的に一致',
diff --git a/resources/lang/ko_KR/firefly.php b/resources/lang/ko_KR/firefly.php
index a80f731d26..b77bb8278b 100644
--- a/resources/lang/ko_KR/firefly.php
+++ b/resources/lang/ko_KR/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(태그 없음)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => '이벤트 기록',
'add_money_to_piggy' => '":name" 저금통애 금액 추가',
diff --git a/resources/lang/ko_KR/form.php b/resources/lang/ko_KR/form.php
index 0600972d24..d0a9d1573c 100644
--- a/resources/lang/ko_KR/form.php
+++ b/resources/lang/ko_KR/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => '은행명',
'bank_balance' => '잔고',
+ 'current_balance' => 'Current balance',
'savings_balance' => '저축 잔액',
'credit_card_limit' => '신용카드 한도',
'automatch' => '자동으로 일치',
diff --git a/resources/lang/nb_NO/firefly.php b/resources/lang/nb_NO/firefly.php
index c29671d07a..d5f84bb829 100644
--- a/resources/lang/nb_NO/firefly.php
+++ b/resources/lang/nb_NO/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ingen tagger)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Hendelseshistorikk',
'add_money_to_piggy' => 'Legg til penger i sparegris ":name"',
diff --git a/resources/lang/nb_NO/form.php b/resources/lang/nb_NO/form.php
index 81d80608f2..a5e4eed289 100644
--- a/resources/lang/nb_NO/form.php
+++ b/resources/lang/nb_NO/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Bankens navn',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Sparesaldo',
'credit_card_limit' => 'Kredittkortgrense',
'automatch' => 'Finn automatisk',
diff --git a/resources/lang/nl_NL/firefly.php b/resources/lang/nl_NL/firefly.php
index 778a28206b..8a20136bc6 100644
--- a/resources/lang/nl_NL/firefly.php
+++ b/resources/lang/nl_NL/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(geen tags)',
'nothing_found' => '(niets gevonden)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Gebeurtenisgeschiedenis',
'add_money_to_piggy' => 'Stop geld in spaarpotje ":name"',
diff --git a/resources/lang/nl_NL/form.php b/resources/lang/nl_NL/form.php
index eee4232cda..48f61d619b 100644
--- a/resources/lang/nl_NL/form.php
+++ b/resources/lang/nl_NL/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Banknaam',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo van spaarrekening',
'credit_card_limit' => 'Credit card limiet',
'automatch' => 'Automatisch herkennen',
diff --git a/resources/lang/nn_NO/firefly.php b/resources/lang/nn_NO/firefly.php
index 7a4ea997d8..7e9f6f8154 100644
--- a/resources/lang/nn_NO/firefly.php
+++ b/resources/lang/nn_NO/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ingen nøkkelord)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Hendelseshistorikk',
'add_money_to_piggy' => 'Legg til pengar i sparegris ":name"',
diff --git a/resources/lang/nn_NO/form.php b/resources/lang/nn_NO/form.php
index 4af82fed8a..5d94a4105b 100644
--- a/resources/lang/nn_NO/form.php
+++ b/resources/lang/nn_NO/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Bankens namn',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Sparesaldo',
'credit_card_limit' => 'Kredittkortgrense',
'automatch' => 'Finn automatisk',
diff --git a/resources/lang/pl_PL/firefly.php b/resources/lang/pl_PL/firefly.php
index e2e81cc8c8..78d93356bd 100644
--- a/resources/lang/pl_PL/firefly.php
+++ b/resources/lang/pl_PL/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(brak tagów)',
'nothing_found' => '(nic nie znaleziono)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Historia zdarzeń',
'add_money_to_piggy' => 'Dodaj pieniądze do skarbonki ":name"',
diff --git a/resources/lang/pl_PL/form.php b/resources/lang/pl_PL/form.php
index 20f6b40c97..207d699ea1 100644
--- a/resources/lang/pl_PL/form.php
+++ b/resources/lang/pl_PL/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nazwa banku',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo konta oszczędnościowego',
'credit_card_limit' => 'Limit karty kredytowej',
'automatch' => 'Dopasuj automatycznie',
diff --git a/resources/lang/pt_BR/firefly.php b/resources/lang/pt_BR/firefly.php
index df122ac1c2..95ee6aba0c 100644
--- a/resources/lang/pt_BR/firefly.php
+++ b/resources/lang/pt_BR/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nada encontrado)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Histórico do evento',
'add_money_to_piggy' => 'Adicionar dinheiro ao cofrinho ":name"',
diff --git a/resources/lang/pt_BR/form.php b/resources/lang/pt_BR/form.php
index ec658fcccd..07d1c6ae9e 100644
--- a/resources/lang/pt_BR/form.php
+++ b/resources/lang/pt_BR/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nome do banco',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo da Poupança',
'credit_card_limit' => 'Limite do Cartão de Crédito',
'automatch' => 'Equivale automaticamente',
diff --git a/resources/lang/pt_PT/firefly.php b/resources/lang/pt_PT/firefly.php
index 3db6015a7f..b7fd83c3f6 100644
--- a/resources/lang/pt_PT/firefly.php
+++ b/resources/lang/pt_PT/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(sem etiquetas)',
'nothing_found' => '(sem resultados)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Histórico de eventos',
'add_money_to_piggy' => 'Adicionar dinheiro ao mealheiro ":name"',
diff --git a/resources/lang/pt_PT/form.php b/resources/lang/pt_PT/form.php
index 0018c3e2d3..b65cac8668 100644
--- a/resources/lang/pt_PT/form.php
+++ b/resources/lang/pt_PT/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Nome do banco',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Saldo nas poupanças',
'credit_card_limit' => 'Limite do cartão de crédito',
'automatch' => 'Corresponder automaticamente',
diff --git a/resources/lang/ro_RO/firefly.php b/resources/lang/ro_RO/firefly.php
index aca98e69e8..5f7eac4d0a 100644
--- a/resources/lang/ro_RO/firefly.php
+++ b/resources/lang/ro_RO/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(fără etichete)',
'nothing_found' => 'nu a fost găsit nimic',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Istoric evenimente',
'add_money_to_piggy' => 'Adăugați bani la pușculiță ":name"',
diff --git a/resources/lang/ro_RO/form.php b/resources/lang/ro_RO/form.php
index 090e1e84b2..5b2f455d83 100644
--- a/resources/lang/ro_RO/form.php
+++ b/resources/lang/ro_RO/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Numele băncii',
'bank_balance' => 'Balanță',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Soldul de economii',
'credit_card_limit' => 'Limita cardului de credit',
'automatch' => 'Se potrivește automat',
diff --git a/resources/lang/ru_RU/firefly.php b/resources/lang/ru_RU/firefly.php
index 278863ea44..876cacdc38 100644
--- a/resources/lang/ru_RU/firefly.php
+++ b/resources/lang/ru_RU/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(нет меток)',
'nothing_found' => '(ничего не найдено)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'История событий',
'add_money_to_piggy' => 'Добавить деньги в копилку ":name"',
diff --git a/resources/lang/ru_RU/form.php b/resources/lang/ru_RU/form.php
index a4195e4731..6f4ebc81aa 100644
--- a/resources/lang/ru_RU/form.php
+++ b/resources/lang/ru_RU/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Название банка',
'bank_balance' => 'Бaлaнc',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Сберегательный баланс',
'credit_card_limit' => 'Лимит кредитной карты',
'automatch' => 'Автоматическое сопоставление',
diff --git a/resources/lang/sk_SK/firefly.php b/resources/lang/sk_SK/firefly.php
index f41bde99fe..3aa74a9825 100644
--- a/resources/lang/sk_SK/firefly.php
+++ b/resources/lang/sk_SK/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(žiadne štítky)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Vložiť peniaze do pokladničky ":name"',
diff --git a/resources/lang/sk_SK/form.php b/resources/lang/sk_SK/form.php
index df6c06481a..325d90d2ef 100644
--- a/resources/lang/sk_SK/form.php
+++ b/resources/lang/sk_SK/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Názov banky',
'bank_balance' => 'Zostatok',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Zostatok úspor',
'credit_card_limit' => 'Limit kreditnej karty',
'automatch' => 'Hľadať zhodu automaticky',
diff --git a/resources/lang/sl_SI/firefly.php b/resources/lang/sl_SI/firefly.php
index 0360c8a3a0..3b93b2ae79 100644
--- a/resources/lang/sl_SI/firefly.php
+++ b/resources/lang/sl_SI/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ni oznak)',
'nothing_found' => '(nič najdenega)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Zgodovina dogodkov',
'add_money_to_piggy' => 'Dodaj denar na hranilnik ":name"',
diff --git a/resources/lang/sl_SI/form.php b/resources/lang/sl_SI/form.php
index 9fec6c8bd2..e6ee237830 100644
--- a/resources/lang/sl_SI/form.php
+++ b/resources/lang/sl_SI/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Naziv banke',
'bank_balance' => 'Stanje',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Stanje prihrankov',
'credit_card_limit' => 'Limit kreditne kartice',
'automatch' => 'Samodejno poveži',
diff --git a/resources/lang/sv_SE/firefly.php b/resources/lang/sv_SE/firefly.php
index 1fcc0b7d66..6bd821a52c 100644
--- a/resources/lang/sv_SE/firefly.php
+++ b/resources/lang/sv_SE/firefly.php
@@ -2400,6 +2400,16 @@ return [
'no_tags' => '(inga etiketter)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Lägg till pengar till spargris ":name"',
diff --git a/resources/lang/sv_SE/form.php b/resources/lang/sv_SE/form.php
index 046e92d53c..3026fa21a9 100644
--- a/resources/lang/sv_SE/form.php
+++ b/resources/lang/sv_SE/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Bankens namn',
'bank_balance' => 'Saldo',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Sparsaldo',
'credit_card_limit' => 'Kreditkortgräns',
'automatch' => 'Hitta automatiskt',
diff --git a/resources/lang/th_TH/firefly.php b/resources/lang/th_TH/firefly.php
index ef7f7a3b41..1da372ce59 100644
--- a/resources/lang/th_TH/firefly.php
+++ b/resources/lang/th_TH/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"',
diff --git a/resources/lang/th_TH/form.php b/resources/lang/th_TH/form.php
index 8cccd2522d..388e76464b 100644
--- a/resources/lang/th_TH/form.php
+++ b/resources/lang/th_TH/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'ชื่อธนาคาร',
'bank_balance' => 'Balance',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Savings balance',
'credit_card_limit' => 'Credit card limit',
'automatch' => 'Match automatically',
diff --git a/resources/lang/tr_TR/breadcrumbs.php b/resources/lang/tr_TR/breadcrumbs.php
index e96ac477ee..a6d13e38d3 100644
--- a/resources/lang/tr_TR/breadcrumbs.php
+++ b/resources/lang/tr_TR/breadcrumbs.php
@@ -36,10 +36,10 @@ declare(strict_types=1);
return [
'home' => 'Ana Sayfa',
'budgets' => 'Bütçeler',
- 'subscriptions' => 'Abonelik',
+ 'subscriptions' => 'Abonelikler',
'transactions' => 'İşlemler',
- 'title_expenses' => 'Masraflar',
- 'title_withdrawal' => 'Masraflar',
+ 'title_expenses' => 'Giderler',
+ 'title_withdrawal' => 'Giderler',
'title_revenue' => 'Gelir / kazanç',
'title_deposit' => 'Gelir /kazanç',
'title_transfer' => 'Aktarmalar',
diff --git a/resources/lang/tr_TR/email.php b/resources/lang/tr_TR/email.php
index c89f8a1124..ca8e3ab4ea 100644
--- a/resources/lang/tr_TR/email.php
+++ b/resources/lang/tr_TR/email.php
@@ -56,16 +56,16 @@ return [
*/
// invite
- 'invitation_created_subject' => 'An invitation has been created',
- 'invitation_created_body' => 'Admin user ":email" created a user invitation which can be used by whoever is behind email address ":invitee". The invite will be valid for 48hrs.',
- 'invite_user_subject' => 'You\'ve been invited to create a Firefly III account.',
- 'invitation_introduction' => 'You\'ve been invited to create a Firefly III account on **:host**. Firefly III is a personal, self-hosted, private personal finance manager. All the cool kids are using it.',
- 'invitation_invited_by' => 'You\'ve been invited by ":admin" and this invitation was sent to ":invitee". That\'s you, right?',
- 'invitation_url' => 'The invitation is valid for 48 hours and can be redeemed by surfing to [Firefly III](:url). Enjoy!',
+ 'invitation_created_subject' => 'Bir davet oluşturuldu',
+ 'invitation_created_body' => 'Admin kullanıcı ":email",:invitee" adresinin arkasındaki kişi tarafından kullanılabilecek bir kullanıcı daveti oluşturdu. Bu davet 48 saat boyunca geçerli olacak.',
+ 'invite_user_subject' => 'Firefly III hesabı oluşturmanız için davet edildiniz.',
+ 'invitation_introduction' => '"":host"" adresinde bir Firefly III hesabı oluşturmak için davet edildiniz. Firefly III, kişisel, kendi kendine barındırılan, özel bir finans yöneticisidir.',
+ 'invitation_invited_by' => '":admin" tarafından davet edildiniz ve bu davetiye ":invitee" adresine gönderilmiştir. Bu sensin, değil mi?',
+ 'invitation_url' => 'Davetiye 48 saat boyunca geçerlidir ve [Firefly III](:url)\'e dalmak için kullanılabilir. Tadını çıkar!',
// new IP
'login_from_new_ip' => 'Firefly III yeni giriş',
- 'slack_login_from_new_ip' => 'New Firefly III login from IP :ip (:host)',
+ 'slack_login_from_new_ip' => ':ip (:host) üzerinden yeni Firefly III girişi',
'new_ip_body' => 'Firefly III, hesabınızda bilinmeyen bir IP adresinden yeni bir giriş tespit etti. Aşağıdaki IP adresinden hiç giriş yapmadıysanız veya altı aydan daha uzun bir süre önce yapıldıysa, Firefly III sizi uyaracaktır.',
'new_ip_warning' => 'Bu IP adresini veya oturum açmayı tanıyorsanız, bu iletiyi yoksayabilirsiniz. Eğer giriş eğer konuyla ilgili hiçbir fikriniz varsa, şifre güvenliğinizi doğrulamak, ve çıkış tüm oturumlar bu değişiklik olmadıysa. Bunu yapmak için profil sayfanıza gidin. Tabii ki zaten 2FA etkin, değil mi? Güvende kalın!',
'ip_address' => 'IP adresi',
@@ -80,8 +80,8 @@ return [
// registered
'registered_subject' => 'Firefly III\'e hoşgeldiniz!',
- 'registered_subject_admin' => 'A new user has registered',
- 'admin_new_user_registered' => 'A new user has registered. User **:email** was given user ID #:id.',
+ 'registered_subject_admin' => 'Yeni bir kullanıcı kayıt edildi',
+ 'admin_new_user_registered' => 'Yeni bir kullanıcı kayıt edildi. **:email** kullanıcısına #:id kimlik numarası verildi.',
'registered_welcome' => '[Firefly III] \'e hoş geldiniz(:address). Kaydınız yapıldı ve bu e-posta onaylamak için burada. Yay!',
'registered_pw' => 'Parolanızı zaten unuttuysanız, lütfen [parola sıfırlama aracı] (:adres/parola/sıfırla) kullanarak sıfırlayın.',
'registered_help' => 'Her sayfanın sağ üst köşesinde bir yardım simgesi bulunur. Yardıma ihtiyacınız olursa, tıklayın!',
@@ -102,7 +102,7 @@ return [
*/
// new version
- 'new_version_email_subject' => 'A new Firefly III version is available',
+ 'new_version_email_subject' => 'Yeni bir Firefly III güncellemesi mevcut',
// email change
'email_change_subject' => 'Firefly III e-posta adresiniz değişti',
@@ -143,7 +143,7 @@ return [
'error_github_text' => 'İsterseniz, yeni bir sayı da açabilirsiniz https://github.com/firefly-iii/firefly-iii/issues.',
'error_stacktrace_below' => 'Tam stacktrace aşağıdadır:',
'error_headers' => 'Aşağıdaki başlıklar da alakalı olabilir:',
- 'error_post' => 'This was submitted by the user:',
+ 'error_post' => 'Bu şu kullanıcı tarafından gönderildi:',
/*
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
@@ -166,10 +166,10 @@ return [
'bill_warning_subject_extension_date' => 'Faturanız ":name" farklı :diff günlerde uzatılacak veya iptal edilecektir',
'bill_warning_subject_now_extension_date' => 'Faturanız ":name" BUGÜN uzatılacak veya iptal edilecek',
'bill_warning_end_date' => 'Faturanız ** ":name"** tarihinde sona ermelidir :date. Bu an yaklaşık **:diff** içinde geçecek.',
- 'bill_warning_extension_date' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass in about **:diff days**.',
- 'bill_warning_end_date_zero' => 'Your bill **":name"** is due to end on :date. This moment will pass **TODAY!**',
- 'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
- 'bill_warning_please_action' => 'Please take the appropriate action.',
+ 'bill_warning_extension_date' => '**":name** faturanız :date tarihinde uzatılacak ya da sona erecektir. Bu durum yaklaşık **:diff** gün içinde gerçekleşecek.',
+ 'bill_warning_end_date_zero' => '**":name"** faturanız :date tarihinde sona erecek. Bu durum **BUGÜN** gerçekleşecek!',
+ 'bill_warning_extension_date_zero' => '**":name** faturanız :date tarihinde uzatılacak ya da sona erecektir. Bu durum **BUGÜN** gerçekleşecek!',
+ 'bill_warning_please_action' => 'Lütfün gerekli işlemleri yapın.',
];
/*
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
diff --git a/resources/lang/tr_TR/errors.php b/resources/lang/tr_TR/errors.php
index 042c3f7945..b67bd76762 100644
--- a/resources/lang/tr_TR/errors.php
+++ b/resources/lang/tr_TR/errors.php
@@ -42,9 +42,9 @@ return [
'fatal_error' => 'Ölümcül bir hata vardı. Neler olduğunu görmek için lütfen "storage/ logs" içindeki günlük dosyalarını kontrol edin veya "docker logs -f [container]" kullanın.',
'maintenance_mode' => 'Firefly III bakım modunda.',
'be_right_back' => 'Hemen dönecek!',
- 'check_back' => 'Firefly III is down for some necessary maintenance. Please check back in a second. If you happen to see this message on the demo site, just wait a few minutes. The database is reset every few hours.',
+ 'check_back' => 'Firefly III bazı gerekli bakımlar için kapalıdır. Lütfen biraz sonra tekrar kontrol edin. Eğer bu mesajı demo site üzerinde görüyorsanız, sadece birkaç dakika bekleyin. Veritabanı saatte bir sıfırlanmaktadır.',
'error_occurred' => 'Hoppala! Bir hata oluştu.',
- 'db_error_occurred' => 'Whoops! A database error occurred.',
+ 'db_error_occurred' => 'Hoppala! Bir veritabanı hatası oluştu.',
'error_not_recoverable' => 'Ne yazık ki, bu hata kurtarılamadı :(. Ateşböceği III kırıldı. Hata şu şekildedir:',
'error' => 'Hata',
'error_location' => 'Bu hata dosyada oluştu:file on line :line with code :code.',
@@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Lütfen günlük dosyalarını bulacağınız storage/logs
dizininde daha fazla bilgi toplayın. Eğer Docker kullanıyorsanız, docker logs -f [container]
komutunu kullanın.',
- 'collect_info_more' => 'You can read more about collecting error information in the FAQ.',
+ 'collect_info_more' => 'SSS bölümünden hata bilgilerinin toplanması hakkında daha fazla bilgi edinebilirsiniz.',
'github_help' => 'Github\'dan yardım alın',
'github_instructions' => 'Yeni bir sayı açmaktan memnuniyet duyarızon GitHub.',
'use_search' => 'Aramayı kullan!',
diff --git a/resources/lang/tr_TR/firefly.php b/resources/lang/tr_TR/firefly.php
index f464bf4f6a..5a591bdf7e 100644
--- a/resources/lang/tr_TR/firefly.php
+++ b/resources/lang/tr_TR/firefly.php
@@ -42,13 +42,13 @@ return [
'split' => 'Böl',
'single_split' => 'Böl',
'clone' => 'Klonla',
- 'clone_and_edit' => 'Clone and edit',
- 'confirm_action' => 'Confirm action',
+ 'clone_and_edit' => 'Klonla ve düzenle',
+ 'confirm_action' => 'İşlemi onayla',
'last_seven_days' => 'Son yedi gün',
'last_thirty_days' => 'Son otuz gün',
'last_180_days' => 'Son 180 gün',
- 'month_to_date' => 'Month to date',
- 'year_to_date' => 'Year to date',
+ 'month_to_date' => 'Aydan bugüne',
+ 'year_to_date' => 'Yıldan bugüne',
'YTD' => 'Son 2 Ay',
'welcome_back' => 'Neler oluyor?',
'everything' => 'Her şey',
@@ -114,7 +114,7 @@ return [
'two_factor_forgot' => 'İki faktörlü kimlik doğrulama cihazını unuttum.',
'two_factor_lost_header' => 'İki faktörlü kimlik doğrulamanızı mı kaybettiniz?',
'two_factor_lost_intro' => 'Eğer yedek kodlarınızı da kayıp ettiyseniz, şansınız kötü. Bu web arayüzünden düzeltebileceğiniz bir şey değil. İki seçeneğiniz var.',
- 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.',
+ 'two_factor_lost_fix_self' => 'Kendi Firefly III örneğinizi çalıştırıyorsanız talimatlar için SSS\'deki bu girişi okuyun.',
'two_factor_lost_fix_owner' => 'Aksi takdirde, site sahibine (:site_owner) e-posta gönderin ve iki faktörlü kimlik doğrulamasını sıfırlamasını isteyin.',
'mfa_backup_code' => 'Firefly III giriş yapmak için yedek kullandınız. Bu kod tekrar kullanılamaz, o yüzden listenizden çıkartın.',
'pref_two_factor_new_backup_codes' => 'Yeni yedek kodları alın',
@@ -204,7 +204,7 @@ return [
'transfer_exchange_rate_instructions' => 'Kaynak varlık hesabı "@source_name" sadece @soruce_currency işlemlerini kabul eder. Hedef varlık hesabı "@dest_name" sadece @dest_currency işlemlerini kabul eder. Aktarılan tutarı her iki para biriminde de doğru olarak girmeniz gerekir.',
'transaction_data' => 'İşlem Verileri',
'invalid_server_configuration' => 'Geçersiz sunucu yapılandırması',
- 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.',
+ 'invalid_locale_settings' => 'Firefly III, sunucunuzda gerekli paketler eksik olduğundan parasal tutarları biçimlendiremiyor. Bunun nasıl yapılacağına dair talimatlar var.',
'quickswitch' => 'Hızlı anahtar',
'sign_in_to_start' => 'Oturumu başlatmak için giriş yapın',
'sign_in' => 'Oturum aç',
@@ -243,24 +243,24 @@ return [
// Webhooks
'webhooks' => 'Web kancaları',
- 'webhooks_breadcrumb' => 'Webhooks',
- 'webhooks_menu_disabled' => 'disabled',
- 'no_webhook_messages' => 'There are no webhook messages',
- 'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
- 'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
- 'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
- 'webhook_response_TRANSACTIONS' => 'Transaction details',
- 'webhook_response_ACCOUNTS' => 'Account details',
- 'webhook_response_none_NONE' => 'No details',
+ 'webhooks_breadcrumb' => 'Webhook\'lar',
+ 'webhooks_menu_disabled' => 'devre dışı',
+ 'no_webhook_messages' => 'Webhook mesajı yok',
+ 'webhook_trigger_STORE_TRANSACTION' => 'İşlem oluşturma sonrası',
+ 'webhook_trigger_UPDATE_TRANSACTION' => 'İşlem güncelleme sonrası',
+ 'webhook_trigger_DESTROY_TRANSACTION' => 'İşlem silme sonrası',
+ 'webhook_response_TRANSACTIONS' => 'İşlem detayları',
+ 'webhook_response_ACCOUNTS' => 'Hesap detayları',
+ 'webhook_response_none_NONE' => 'Detay yok',
'webhook_delivery_JSON' => 'JSON',
- 'inspect' => 'Inspect',
- 'create_new_webhook' => 'Create new webhook',
- 'webhooks_create_breadcrumb' => 'Create new webhook',
- 'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
- 'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
- 'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
- 'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
- 'stored_new_webhook' => 'Stored new webhook ":title"',
+ 'inspect' => 'İncele',
+ 'create_new_webhook' => 'Yeni webhook oluştur',
+ 'webhooks_create_breadcrumb' => 'Yeni webhook oluştur',
+ 'webhook_trigger_form_help' => 'Webhook\'un hangi olayı tetikleyeceğini belirtin',
+ 'webhook_response_form_help' => 'Webhook\'un URL\'ye ne göndermesi gerektiğini belirleyin.',
+ 'webhook_delivery_form_help' => 'Webhook\'un verileri hangi formatta iletmesi gerek.',
+ 'webhook_active_form_help' => 'Webhook\'un etkin olması gerekir, aksi takdirde çağrılmaz.',
+ 'stored_new_webhook' => 'Yeni webhook ":title" depolandı',
'delete_webhook' => 'Delete webhook',
'deleted_webhook' => 'Deleted webhook ":title"',
'edit_webhook' => 'Edit webhook ":title"',
@@ -2400,6 +2400,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => '":name" kumbarasına paraa ekle',
@@ -2818,8 +2828,8 @@ return [
'ale_action_update_amount' => 'Updated amount',
// dashboard
- 'enable_auto_convert' => 'Enable currency conversion',
- 'disable_auto_convert' => 'Disable currency conversion',
+ 'enable_auto_convert' => 'Para birimi dönüştürmeyi etkinleştir',
+ 'disable_auto_convert' => 'Para birimi dönüştürmeyi devre dışı bırak',
];
/*
diff --git a/resources/lang/tr_TR/form.php b/resources/lang/tr_TR/form.php
index 8ceb6d66a2..6dfeb3ecd0 100644
--- a/resources/lang/tr_TR/form.php
+++ b/resources/lang/tr_TR/form.php
@@ -37,11 +37,12 @@ return [
// new user:
'bank_name' => 'Banka adı',
'bank_balance' => 'Bakiye',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Tasarruf bakiyesi',
'credit_card_limit' => 'Kredi kartı limiti',
'automatch' => 'Otomatik olarak eşleştir',
'skip' => 'Atla',
- 'enabled' => 'Enabled',
+ 'enabled' => 'Etkin',
'name' => 'İsim',
'active' => 'Aktif',
'amount_min' => 'Minimum tutar',
@@ -49,30 +50,30 @@ return [
'match' => 'Eşleşti',
'strict' => 'Sıkı mod',
'repeat_freq' => 'Tekrarlar',
- 'object_group' => 'Group',
- 'location' => 'Location',
- 'update_channel' => 'Update channel',
+ 'object_group' => 'Grup',
+ 'location' => 'Konum',
+ 'update_channel' => 'Güncelleme kanalı',
'currency_id' => 'Para birimi',
'transaction_currency_id' => 'Para birimi',
- 'auto_budget_currency_id' => 'Currency',
+ 'auto_budget_currency_id' => 'Para birimi',
'external_ip' => 'Sunucunuzun dış IP adresi',
'attachments' => 'Ekler',
'BIC' => 'BIC',
'verify_password' => 'Parola güvenliğini doğrula',
'source_account' => 'Kaynak hesap',
'destination_account' => 'Hedef Hesap',
- 'asset_destination_account' => 'Destination account',
- 'include_net_worth' => 'Include in net worth',
- 'asset_source_account' => 'Source account',
+ 'asset_destination_account' => 'Hedef hesap',
+ 'include_net_worth' => 'Net değere dahil et',
+ 'asset_source_account' => 'Kaynak hesap',
'journal_description' => 'Tanımlama',
'note' => 'Notlar',
'currency' => 'Para birimi',
'account_id' => 'Varlık hesabı',
'budget_id' => 'Bütçe',
- 'bill_id' => 'Bill',
- 'opening_balance' => 'Opening balance',
+ 'bill_id' => 'Fatura',
+ 'opening_balance' => 'Açılış bakiyesi',
'tagMode' => 'Etiket modu',
- 'virtual_balance' => 'Virtual balance',
+ 'virtual_balance' => 'Sanal bakiye',
/*
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
@@ -86,10 +87,10 @@ return [
*/
'targetamount' => 'Hedef tutar',
- 'account_role' => 'Account role',
- 'opening_balance_date' => 'Opening balance date',
- 'cc_type' => 'Credit card payment plan',
- 'cc_monthly_payment_date' => 'Credit card monthly payment date',
+ 'account_role' => 'Hesap rolü',
+ 'opening_balance_date' => 'Açılış bakiyesi tarihi',
+ 'cc_type' => 'Kredi kartı ödeme planı',
+ 'cc_monthly_payment_date' => 'Kredi kartı aylık ödeme tarihi',
'piggy_bank_id' => 'Kumbara',
'returnHere' => 'Dön buraya',
'returnHereExplanation' => 'Sakladıktan sonra, başka bir tane oluşturmak için buraya dön.',
@@ -102,12 +103,12 @@ return [
'new_email_address' => 'Yeni e-posta adresi',
'verification' => 'Doğrulama',
'api_key' => 'API anahtarı',
- 'remember_me' => 'Remember me',
- 'liability_type_id' => 'Liability type',
- 'liability_type' => 'Liability type',
- 'interest' => 'Interest',
- 'interest_period' => 'Interest period',
- 'extension_date' => 'Extension date',
+ 'remember_me' => 'Beni hatırla',
+ 'liability_type_id' => 'Borç türü',
+ 'liability_type' => 'Borç türü',
+ 'interest' => 'Faiz',
+ 'interest_period' => 'Faiz periyodu',
+ 'extension_date' => 'Uzatma tarihi',
'type' => 'Tür',
'convert_Withdrawal' => 'Para çekmeyi değiştir',
'convert_Deposit' => 'Mevduata dönüştürün',
diff --git a/resources/lang/uk_UA/firefly.php b/resources/lang/uk_UA/firefly.php
index 4d1a5b90af..de695f8cd3 100644
--- a/resources/lang/uk_UA/firefly.php
+++ b/resources/lang/uk_UA/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Додайте гроші в скарбничку ":name"',
diff --git a/resources/lang/uk_UA/form.php b/resources/lang/uk_UA/form.php
index 7e39d4c41d..ec6e48e50e 100644
--- a/resources/lang/uk_UA/form.php
+++ b/resources/lang/uk_UA/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Назва банку',
'bank_balance' => 'Баланс',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Баланс заощаджень',
'credit_card_limit' => 'Ліміт кредитної картки',
'automatch' => 'Визначати автоматично',
diff --git a/resources/lang/vi_VN/firefly.php b/resources/lang/vi_VN/firefly.php
index 63403ff2e8..6bc138952d 100644
--- a/resources/lang/vi_VN/firefly.php
+++ b/resources/lang/vi_VN/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(không có nhãn)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Thêm tiền vào heo đất ":name"',
diff --git a/resources/lang/vi_VN/form.php b/resources/lang/vi_VN/form.php
index 005dc9c9cc..9b0d0bee9d 100644
--- a/resources/lang/vi_VN/form.php
+++ b/resources/lang/vi_VN/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => 'Tên ngân hàng',
'bank_balance' => 'Số dư',
+ 'current_balance' => 'Current balance',
'savings_balance' => 'Số dư tiết kiệm',
'credit_card_limit' => 'Hạn mức thẻ tín dụng',
'automatch' => 'Tự động khớp',
diff --git a/resources/lang/zh_CN/firefly.php b/resources/lang/zh_CN/firefly.php
index 7489845f8a..be01a6ecf4 100644
--- a/resources/lang/zh_CN/firefly.php
+++ b/resources/lang/zh_CN/firefly.php
@@ -2400,6 +2400,16 @@ return [
'no_tags' => '(无标签)',
'nothing_found' => '(没有找到)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => '事件历史',
'add_money_to_piggy' => '存入存钱罐 “:name”',
diff --git a/resources/lang/zh_CN/form.php b/resources/lang/zh_CN/form.php
index c6dd8e5285..4676de82f3 100644
--- a/resources/lang/zh_CN/form.php
+++ b/resources/lang/zh_CN/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => '银行名称',
'bank_balance' => '余额',
+ 'current_balance' => 'Current balance',
'savings_balance' => '储蓄余额',
'credit_card_limit' => '信用卡额度',
'automatch' => '自动匹配',
diff --git a/resources/lang/zh_TW/errors.php b/resources/lang/zh_TW/errors.php
index e0c1e34bba..93efcf80ba 100644
--- a/resources/lang/zh_TW/errors.php
+++ b/resources/lang/zh_TW/errors.php
@@ -34,8 +34,8 @@
declare(strict_types=1);
return [
- '404_header' => 'Firefly III cannot find this page.',
- '404_page_does_not_exist' => 'The page you have requested does not exist. Please check that you have not entered the wrong URL. Did you make a typo perhaps?',
+ '404_header' => 'Firefly III 找不到此頁面。',
+ '404_page_does_not_exist' => '您請求的頁面不存在。請檢查您是否輸入了錯誤的網址。您是否打錯字了?',
'404_send_error' => 'If you were redirected to this page automatically, please accept my apologies. There is a mention of this error in your log files and I would be grateful if you sent me the error to me.',
'404_github_link' => 'If you are sure this page should exist, please open a ticket on GitHub.',
'whoops' => 'Whoops',
diff --git a/resources/lang/zh_TW/firefly.php b/resources/lang/zh_TW/firefly.php
index e1caeeebe1..ab7921dac1 100644
--- a/resources/lang/zh_TW/firefly.php
+++ b/resources/lang/zh_TW/firefly.php
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)',
+ // page settings and wizard dialogs
+
+ 'page_settings_header' => 'Page settings',
+ 'visible_columns' => 'Visible columns',
+ 'accounts_to_show' => 'Accounts to show',
+ 'active_accounts_only' => 'Active accounts only',
+ 'in_active_accounts_only' => 'Inactive accounts only',
+ 'show_all_accounts' => 'Show all accounts',
+ 'group_accounts' => 'Group accounts',
+
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => '新增金錢至小豬撲滿 “:name”',
diff --git a/resources/lang/zh_TW/form.php b/resources/lang/zh_TW/form.php
index 118cf8cecb..dcf7826847 100644
--- a/resources/lang/zh_TW/form.php
+++ b/resources/lang/zh_TW/form.php
@@ -37,6 +37,7 @@ return [
// new user:
'bank_name' => '銀行名稱',
'bank_balance' => '餘額',
+ 'current_balance' => 'Current balance',
'savings_balance' => '儲蓄餘額',
'credit_card_limit' => '信用卡額度',
'automatch' => '自動配對',