Auto commit for release 'develop' on 2024-04-29

This commit is contained in:
github-actions
2024-04-29 06:36:36 +02:00
parent b14606625e
commit c02c027f4f
144 changed files with 1215 additions and 276 deletions

View File

@@ -188,8 +188,6 @@ Please find below all the people who contributed to the Firefly III code. Their
## 2014 ## 2014
- Stewart Malik - Stewart Malik
- Graham Campbell - Graham Campbell
- Sander Dorigo
- James Cole
Thank you for all your support! Thank you for all your support!

View File

@@ -33,7 +33,7 @@ use Illuminate\Pagination\LengthAwarePaginator;
class IndexController extends Controller class IndexController extends Controller
{ {
public const string RESOURCE_KEY = 'accounts'; public const string RESOURCE_KEY = 'accounts';
private AccountRepositoryInterface $repository; private AccountRepositoryInterface $repository;
protected array $acceptedRoles = [UserRoleEnum::READ_ONLY, UserRoleEnum::MANAGE_TRANSACTIONS]; protected array $acceptedRoles = [UserRoleEnum::READ_ONLY, UserRoleEnum::MANAGE_TRANSACTIONS];
@@ -48,7 +48,7 @@ class IndexController extends Controller
function ($request, $next) { function ($request, $next) {
$this->repository = app(AccountRepositoryInterface::class); $this->repository = app(AccountRepositoryInterface::class);
// new way of user group validation // new way of user group validation
$userGroup = $this->validateUserGroup($request); $userGroup = $this->validateUserGroup($request);
$this->repository->setUserGroup($userGroup); $this->repository->setUserGroup($userGroup);
return $next($request); return $next($request);
@@ -79,6 +79,7 @@ class IndexController extends Controller
return response() return response()
->json($this->jsonApiList('accounts', $paginator, $transformer)) ->json($this->jsonApiList('accounts', $paginator, $transformer))
->header('Content-Type', self::CONTENT_TYPE); ->header('Content-Type', self::CONTENT_TYPE)
;
} }
} }

View File

@@ -41,9 +41,8 @@ class IndexRequest extends FormRequest
use AccountFilter; use AccountFilter;
use ChecksLogin; use ChecksLogin;
use ConvertsDataTypes; use ConvertsDataTypes;
use GetSortInstructions;
use GetFilterInstructions; use GetFilterInstructions;
use GetSortInstructions;
public function getAccountTypes(): array public function getAccountTypes(): array
{ {

View File

@@ -66,7 +66,8 @@ class AccountRepository implements AccountRepositoryInterface
$q1->where('account_meta.name', '=', 'account_number'); $q1->where('account_meta.name', '=', 'account_number');
$q1->where('account_meta.data', '=', $json); $q1->where('account_meta.data', '=', $json);
} }
); )
;
if (0 !== count($types)) { if (0 !== count($types)) {
$dbQuery->leftJoin('account_types', 'accounts.account_type_id', '=', 'account_types.id'); $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 public function findByName(string $name, array $types): ?Account
{ {
$query = $this->userGroup->accounts(); $query = $this->userGroup->accounts();
if (0 !== count($types)) { if (0 !== count($types)) {
$query->leftJoin('account_types', 'accounts.account_type_id', '=', 'account_types.id'); $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 public function getAccountCurrency(Account $account): ?TransactionCurrency
{ {
$type = $account->accountType->type; $type = $account->accountType->type;
$list = config('firefly.valid_currency_account_types'); $list = config('firefly.valid_currency_account_types');
// return null if not in this list. // return null if not in this list.
if (!in_array($type, $list, true)) { if (!in_array($type, $list, true)) {
@@ -242,9 +243,9 @@ class AccountRepository implements AccountRepositoryInterface
public function getAccountsByType(array $types, ?array $sort = [], ?array $filters = []): Collection public function getAccountsByType(array $types, ?array $sort = [], ?array $filters = []): Collection
{ {
$sortable = ['name', 'active']; // TODO yes this is a duplicate array. $sortable = ['name', 'active']; // TODO yes this is a duplicate array.
$res = array_intersect([AccountType::ASSET, AccountType::MORTGAGE, AccountType::LOAN, AccountType::DEBT], $types); $res = array_intersect([AccountType::ASSET, AccountType::MORTGAGE, AccountType::LOAN, AccountType::DEBT], $types);
$query = $this->userGroup->accounts(); $query = $this->userGroup->accounts();
if (0 !== count($types)) { if (0 !== count($types)) {
$query->accountTypeIn($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: // add sort parameters. At this point they're filtered to allowed fields to sort by:
$hasActiveColumn = array_key_exists('active', $sort); $hasActiveColumn = array_key_exists('active', $sort);
if (count($sort) > 0) { if (count($sort) > 0) {
@@ -294,11 +294,12 @@ class AccountRepository implements AccountRepositoryInterface
{ {
// search by group, not by user // search by group, not by user
$dbQuery = $this->userGroup->accounts() $dbQuery = $this->userGroup->accounts()
->where('active', true) ->where('active', true)
->orderBy('accounts.order', 'ASC') ->orderBy('accounts.order', 'ASC')
->orderBy('accounts.account_type_id', 'ASC') ->orderBy('accounts.account_type_id', 'ASC')
->orderBy('accounts.name', 'ASC') ->orderBy('accounts.name', 'ASC')
->with(['accountType']); ->with(['accountType'])
;
if ('' !== $query) { if ('' !== $query) {
// split query on spaces just in case: // split query on spaces just in case:
$parts = explode(' ', $query); $parts = explode(' ', $query);
@@ -339,42 +340,48 @@ class AccountRepository implements AccountRepositoryInterface
public function getAccountTypes(Collection $accounts): Collection public function getAccountTypes(Collection $accounts): Collection
{ {
return AccountType::leftJoin('accounts', 'accounts.account_type_id', '=', 'account_types.id') return AccountType::leftJoin('accounts', 'accounts.account_type_id', '=', 'account_types.id')
->whereIn('accounts.id', $accounts->pluck('id')->toArray()) ->whereIn('accounts.id', $accounts->pluck('id')->toArray())
->get(['accounts.id', 'account_types.type']); ->get(['accounts.id', 'account_types.type'])
;
} }
#[\Override] #[\Override]
public function getLastActivity(Collection $accounts): array public function getLastActivity(Collection $accounts): array
{ {
return Transaction::whereIn('account_id', $accounts->pluck('id')->toArray()) return Transaction::whereIn('account_id', $accounts->pluck('id')->toArray())
->leftJoin('transaction_journals', 'transaction_journals.id', 'transactions.transaction_journal_id') ->leftJoin('transaction_journals', 'transaction_journals.id', 'transactions.transaction_journal_id')
->groupBy('transactions.account_id') ->groupBy('transactions.account_id')
->get(['transactions.account_id', DB::raw('MAX(transaction_journals.date) as date_max')])->toArray() // @phpstan-ignore-line ->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 = []; $groupIds = [];
$return = []; $return = [];
$set = DB::table('object_groupables')->where('object_groupable_type', Account::class) $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 */ /** @var \stdClass $row */
foreach ($set as $row) { foreach ($set as $row) {
$groupIds[] = $row->object_group_id; $groupIds[] = $row->object_group_id;
} }
$groupIds = array_unique($groupIds); $groupIds = array_unique($groupIds);
$groups = ObjectGroup::whereIn('id', $groupIds)->get(); $groups = ObjectGroup::whereIn('id', $groupIds)->get();
/** @var \stdClass $row */ /** @var \stdClass $row */
foreach ($set as $row) { foreach ($set as $row) {
if (!array_key_exists($row->object_groupable_id, $return)) { 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); $group = $groups->firstWhere('id', '=', $row->object_group_id);
if (null !== $group) { if (null !== $group) {
$return[$row->object_groupable_id] = ['title' => $group->title, 'order' => $group->order, 'id' => $group->id]; $return[$row->object_groupable_id] = ['title' => $group->title, 'order' => $group->order, 'id' => $group->id];
} }
} }
} }
return $return; return $return;
} }
} }

View File

@@ -69,7 +69,7 @@ interface AccountRepositoryInterface
*/ */
public function getMetaValue(Account $account, string $field): ?string; public function getMetaValue(Account $account, string $field): ?string;
public function getObjectGroups(Collection $accounts) : array; public function getObjectGroups(Collection $accounts): array;
public function getUserGroup(): UserGroup; public function getUserGroup(): UserGroup;

View File

@@ -37,35 +37,41 @@ trait GetFilterInstructions
return []; return [];
} }
foreach ($set as $info) { foreach ($set as $info) {
$column = $info['column'] ?? 'NOPE'; $column = $info['column'] ?? 'NOPE';
$filterValue = (string) ($info['filter'] ?? self::INVALID_FILTER); $filterValue = (string) ($info['filter'] ?? self::INVALID_FILTER);
if (false === in_array($column, $allowed, true)) { if (false === in_array($column, $allowed, true)) {
// skip invalid column // skip invalid column
continue; continue;
} }
$filterType = $config[$column] ?? false; $filterType = $config[$column] ?? false;
switch ($filterType) { switch ($filterType) {
default: default:
die(sprintf('Do not support filter type "%s"', $filterType)); exit(sprintf('Do not support filter type "%s"', $filterType));
case 'boolean': case 'boolean':
$filterValue = $this->booleanInstruction($filterValue); $filterValue = $this->booleanInstruction($filterValue);
break; break;
case 'string': case 'string':
break; break;
} }
$result[$column] = $filterValue; $result[$column] = $filterValue;
} }
return $result; return $result;
} }
public function booleanInstruction(string $filterValue): ?bool { public function booleanInstruction(string $filterValue): ?bool
{
if ('true' === $filterValue) { if ('true' === $filterValue) {
return true; return true;
} }
if ('false' === $filterValue) { if ('false' === $filterValue) {
return false; return false;
} }
return null; return null;
} }
} }

View File

@@ -104,28 +104,28 @@ class AccountTransformer extends AbstractTransformer
*/ */
public function transform(Account $account): array public function transform(Account $account): array
{ {
$id = $account->id; $id = $account->id;
// various meta // various meta
$accountRole = $this->accountMeta[$id]['account_role'] ?? null; $accountRole = $this->accountMeta[$id]['account_role'] ?? null;
$accountType = $this->accountTypes[$id]; $accountType = $this->accountTypes[$id];
$order = $account->order; $order = $account->order;
// liability type // liability type
$liabilityType = $accountType === 'liabilities' ? $this->fullTypes[$id] : null; $liabilityType = 'liabilities' === $accountType ? $this->fullTypes[$id] : null;
$liabilityDirection = $this->accountMeta[$id]['liability_direction'] ?? null; $liabilityDirection = $this->accountMeta[$id]['liability_direction'] ?? null;
$interest = $this->accountMeta[$id]['interest'] ?? null; $interest = $this->accountMeta[$id]['interest'] ?? null;
$interestPeriod = $this->accountMeta[$id]['interest_period'] ?? null; $interestPeriod = $this->accountMeta[$id]['interest_period'] ?? null;
$currentDebt = $this->accountMeta[$id]['current_debt'] ?? null; $currentDebt = $this->accountMeta[$id]['current_debt'] ?? null;
// no currency? use default // 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)) { if (array_key_exists($id, $this->accountMeta) && 0 !== (int) ($this->accountMeta[$id]['currency_id'] ?? 0)) {
$currency = $this->currencies[(int) $this->accountMeta[$id]['currency_id']]; $currency = $this->currencies[(int) $this->accountMeta[$id]['currency_id']];
} }
// amounts and calculation. // amounts and calculation.
$balance = $this->balances[$id]['balance'] ?? null; $balance = $this->balances[$id]['balance'] ?? null;
$nativeBalance = $this->convertedBalances[$id]['native_balance'] ?? null; $nativeBalance = $this->convertedBalances[$id]['native_balance'] ?? null;
// no order for some accounts: // no order for some accounts:
if (!in_array(strtolower($accountType), ['liability', 'liabilities', 'asset'], true)) { if (!in_array(strtolower($accountType), ['liability', 'liabilities', 'asset'], true)) {
@@ -133,15 +133,15 @@ class AccountTransformer extends AbstractTransformer
} }
// object group // object group
$objectGroupId = $this->objectGroups[$id]['id'] ?? null; $objectGroupId = $this->objectGroups[$id]['id'] ?? null;
$objectGroupOrder = $this->objectGroups[$id]['order'] ?? null; $objectGroupOrder = $this->objectGroups[$id]['order'] ?? null;
$objectGroupTitle = $this->objectGroups[$id]['title'] ?? null; $objectGroupTitle = $this->objectGroups[$id]['title'] ?? null;
// balance difference // balance difference
$diffStart = null; $diffStart = null;
$diffEnd = null; $diffEnd = null;
$balanceDiff = null; $balanceDiff = null;
$nativeBalanceDiff = null; $nativeBalanceDiff = null;
if (null !== $this->parameters->get('start') && null !== $this->parameters->get('end')) { if (null !== $this->parameters->get('start') && null !== $this->parameters->get('end')) {
$diffStart = $this->parameters->get('start')->toAtomString(); $diffStart = $this->parameters->get('start')->toAtomString();
$diffEnd = $this->parameters->get('end')->toAtomString(); $diffEnd = $this->parameters->get('end')->toAtomString();
@@ -150,20 +150,20 @@ class AccountTransformer extends AbstractTransformer
} }
return [ return [
'id' => (string) $account->id, 'id' => (string) $account->id,
'created_at' => $account->created_at->toAtomString(), 'created_at' => $account->created_at->toAtomString(),
'updated_at' => $account->updated_at->toAtomString(), 'updated_at' => $account->updated_at->toAtomString(),
'active' => $account->active, 'active' => $account->active,
'order' => $order, 'order' => $order,
'name' => $account->name, 'name' => $account->name,
'iban' => '' === (string) $account->iban ? null : $account->iban, 'iban' => '' === (string) $account->iban ? null : $account->iban,
'account_number' => $this->accountMeta[$id]['account_number'] ?? null, 'account_number' => $this->accountMeta[$id]['account_number'] ?? null,
'type' => strtolower($accountType), 'type' => strtolower($accountType),
'account_role' => $accountRole, 'account_role' => $accountRole,
'currency_id' => (string) $currency->id, 'currency_id' => (string) $currency->id,
'currency_code' => $currency->code, 'currency_code' => $currency->code,
'currency_symbol' => $currency->symbol, 'currency_symbol' => $currency->symbol,
'currency_decimal_places' => $currency->decimal_places, 'currency_decimal_places' => $currency->decimal_places,
'native_currency_id' => (string) $this->default->id, 'native_currency_id' => (string) $this->default->id,
'native_currency_code' => $this->default->code, 'native_currency_code' => $this->default->code,
@@ -210,7 +210,7 @@ class AccountTransformer extends AbstractTransformer
'links' => [ 'links' => [
[ [
'rel' => 'self', 'rel' => 'self',
'uri' => '/accounts/' . $account->id, 'uri' => '/accounts/'.$account->id,
], ],
], ],
]; ];
@@ -233,14 +233,14 @@ class AccountTransformer extends AbstractTransformer
private function collectAccountMetaData(Collection $accounts): void private function collectAccountMetaData(Collection $accounts): void
{ {
/** @var CurrencyRepositoryInterface $repository */ /** @var CurrencyRepositoryInterface $repository */
$repository = app(CurrencyRepositoryInterface::class); $repository = app(CurrencyRepositoryInterface::class);
/** @var AccountRepositoryInterface $accountRepository */ /** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class); $accountRepository = app(AccountRepositoryInterface::class);
$metaFields = $accountRepository->getMetaValues($accounts, ['currency_id', 'account_role', 'account_number', 'liability_direction', 'interest', 'interest_period', 'current_debt']); $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(); $currencyIds = $metaFields->where('name', 'currency_id')->pluck('data')->toArray();
$currencies = $repository->getByIds($currencyIds); $currencies = $repository->getByIds($currencyIds);
foreach ($currencies as $currency) { foreach ($currencies as $currency) {
$id = $currency->id; $id = $currency->id;
$this->currencies[$id] = $currency; $this->currencies[$id] = $currency;

10
composer.lock generated
View File

@@ -5326,16 +5326,16 @@
}, },
{ {
"name": "spatie/ignition", "name": "spatie/ignition",
"version": "1.13.2", "version": "1.14.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/spatie/ignition.git", "url": "https://github.com/spatie/ignition.git",
"reference": "952798e239d9969e4e694b124c2cc222798dbb28" "reference": "80385994caed328f6f9c9952926932e65b9b774c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/spatie/ignition/zipball/952798e239d9969e4e694b124c2cc222798dbb28", "url": "https://api.github.com/repos/spatie/ignition/zipball/80385994caed328f6f9c9952926932e65b9b774c",
"reference": "952798e239d9969e4e694b124c2cc222798dbb28", "reference": "80385994caed328f6f9c9952926932e65b9b774c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -5405,7 +5405,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2024-04-16T08:49:17+00:00" "time": "2024-04-26T08:45:51+00:00"
}, },
{ {
"name": "spatie/laravel-html", "name": "spatie/laravel-html",

View File

@@ -117,7 +117,7 @@ return [
'expression_engine' => false, 'expression_engine' => false,
// see cer.php for exchange rates feature flag. // see cer.php for exchange rates feature flag.
], ],
'version' => 'develop/2024-04-26', 'version' => 'develop/2024-04-29',
'api_version' => '2.0.14', 'api_version' => '2.0.14',
'db_version' => 24, 'db_version' => 24,
@@ -436,7 +436,7 @@ return [
'transfers' => 'fa-exchange', 'transfers' => 'fa-exchange',
], ],
'bindables' => [ 'bindables' => [
// models // models
'account' => Account::class, 'account' => Account::class,
'attachment' => Attachment::class, 'attachment' => Attachment::class,
@@ -494,7 +494,7 @@ return [
'userGroupBill' => UserGroupBill::class, 'userGroupBill' => UserGroupBill::class,
'userGroup' => UserGroup::class, 'userGroup' => UserGroup::class,
], ],
'rule-actions' => [ 'rule-actions' => [
'set_category' => SetCategory::class, 'set_category' => SetCategory::class,
'clear_category' => ClearCategory::class, 'clear_category' => ClearCategory::class,
'set_budget' => SetBudget::class, 'set_budget' => SetBudget::class,
@@ -528,7 +528,7 @@ return [
// 'set_foreign_amount' => SetForeignAmount::class, // 'set_foreign_amount' => SetForeignAmount::class,
// 'set_foreign_currency' => SetForeignCurrency::class, // 'set_foreign_currency' => SetForeignCurrency::class,
], ],
'context-rule-actions' => [ 'context-rule-actions' => [
'set_category', 'set_category',
'set_budget', 'set_budget',
'add_tag', 'add_tag',
@@ -547,13 +547,13 @@ return [
'convert_transfer', 'convert_transfer',
], ],
'test-triggers' => [ 'test-triggers' => [
'limit' => 10, 'limit' => 10,
'range' => 200, 'range' => 200,
], ],
// expected source types for each transaction type, in order of preference. // expected source types for each transaction type, in order of preference.
'expected_source_types' => [ 'expected_source_types' => [
'source' => [ 'source' => [
TransactionTypeModel::WITHDRAWAL => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], TransactionTypeModel::WITHDRAWAL => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
TransactionTypeEnum::DEPOSIT->value => [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::REVENUE, AccountType::CASH], 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], TransactionTypeModel::LIABILITY_CREDIT => [AccountType::LIABILITY_CREDIT, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
], ],
], ],
'allowed_opposing_types' => [ 'allowed_opposing_types' => [
'source' => [ 'source' => [
AccountType::ASSET => [ AccountType::ASSET => [
AccountType::ASSET, AccountType::ASSET,
@@ -688,7 +688,7 @@ return [
], ],
], ],
// depending on the account type, return the allowed transaction types: // depending on the account type, return the allowed transaction types:
'allowed_transaction_types' => [ 'allowed_transaction_types' => [
'source' => [ 'source' => [
AccountType::ASSET => [ AccountType::ASSET => [
TransactionTypeModel::WITHDRAWAL, TransactionTypeModel::WITHDRAWAL,
@@ -757,7 +757,7 @@ return [
], ],
// having the source + dest will tell you the transaction type. // having the source + dest will tell you the transaction type.
'account_to_transaction' => [ 'account_to_transaction' => [
AccountType::ASSET => [ AccountType::ASSET => [
AccountType::ASSET => TransactionTypeModel::TRANSFER, AccountType::ASSET => TransactionTypeModel::TRANSFER,
AccountType::CASH => TransactionTypeModel::WITHDRAWAL, AccountType::CASH => TransactionTypeModel::WITHDRAWAL,
@@ -822,7 +822,7 @@ return [
], ],
// allowed source -> destination accounts. // allowed source -> destination accounts.
'source_dests' => [ 'source_dests' => [
TransactionTypeModel::WITHDRAWAL => [ TransactionTypeModel::WITHDRAWAL => [
AccountType::ASSET => [AccountType::EXPENSE, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::CASH], AccountType::ASSET => [AccountType::EXPENSE, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::CASH],
AccountType::LOAN => [AccountType::EXPENSE, 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). // if you add fields to this array, don't forget to update the export routine (ExportDataGenerator).
'journal_meta_fields' => [ 'journal_meta_fields' => [
// sepa // sepa
'sepa_cc', 'sepa_cc',
'sepa_ct_op', 'sepa_ct_op',
@@ -895,33 +895,33 @@ return [
'recurrence_count', 'recurrence_count',
'recurrence_date', 'recurrence_date',
], ],
'webhooks' => [ 'webhooks' => [
'max_attempts' => env('WEBHOOK_MAX_ATTEMPTS', 3), 'max_attempts' => env('WEBHOOK_MAX_ATTEMPTS', 3),
], ],
'can_have_virtual_amounts' => [AccountType::ASSET], 'can_have_virtual_amounts' => [AccountType::ASSET],
'can_have_opening_balance' => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], 'can_have_opening_balance' => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE],
'dynamic_creation_allowed' => [ 'dynamic_creation_allowed' => [
AccountType::EXPENSE, AccountType::EXPENSE,
AccountType::REVENUE, AccountType::REVENUE,
AccountType::INITIAL_BALANCE, AccountType::INITIAL_BALANCE,
AccountType::RECONCILIATION, AccountType::RECONCILIATION,
AccountType::LIABILITY_CREDIT, AccountType::LIABILITY_CREDIT,
], ],
'valid_asset_fields' => ['account_role', 'account_number', 'currency_id', 'BIC', 'include_net_worth'], '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_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_account_fields' => ['account_number', 'currency_id', 'BIC', 'interest', 'interest_period', 'include_net_worth', 'liability_direction'],
// dynamic date ranges are as follows: // 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 // only used in v1
'allowed_sort_parameters' => ['order', 'name', 'iban'], 'allowed_sort_parameters' => ['order', 'name', 'iban'],
// preselected account lists possibilities: // preselected account lists possibilities:
'preselected_accounts' => ['all', 'assets', 'liabilities'], 'preselected_accounts' => ['all', 'assets', 'liabilities'],
// allowed filters (search) for APIs // allowed filters (search) for APIs
'filters' => [ 'filters' => [
'allowed' => [ 'allowed' => [
'accounts' => [ 'accounts' => [
'name' => 'string', 'name' => 'string',
@@ -935,10 +935,10 @@ return [
], ],
// allowed sort columns for APIs // allowed sort columns for APIs
'sorting' => [ 'sorting' => [
'allowed' => [ 'allowed' => [
'transactions' => ['description', 'amount'], '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'],
], ],
], ],
]; ];

164
package-lock.json generated
View File

@@ -2402,9 +2402,9 @@
} }
}, },
"node_modules/@rollup/rollup-android-arm-eabi": { "node_modules/@rollup/rollup-android-arm-eabi": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.0.tgz",
"integrity": "sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q==", "integrity": "sha512-nNvLvC2fjC+3+bHYN9uaGF3gcyy7RHGZhtl8TB/kINj9hiOQza8kWJGZh47GRPMrqeseO8U+Z8ElDMCZlWBdHA==",
"cpu": [ "cpu": [
"arm" "arm"
], ],
@@ -2415,9 +2415,9 @@
] ]
}, },
"node_modules/@rollup/rollup-android-arm64": { "node_modules/@rollup/rollup-android-arm64": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.0.tgz",
"integrity": "sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w==", "integrity": "sha512-+kjt6dvxnyTIAo7oHeYseYhDyZ7xRKTNl/FoQI96PHkJVxoChldJnne/LzYqpqidoK1/0kX0/q+5rrYqjpth6w==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@@ -2428,9 +2428,9 @@
] ]
}, },
"node_modules/@rollup/rollup-darwin-arm64": { "node_modules/@rollup/rollup-darwin-arm64": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.0.tgz",
"integrity": "sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw==", "integrity": "sha512-Oj6Tp0unMpGTBjvNwbSRv3DopMNLu+mjBzhKTt2zLbDJ/45fB1pltr/rqrO4bE95LzuYwhYn127pop+x/pzf5w==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@@ -2441,9 +2441,9 @@
] ]
}, },
"node_modules/@rollup/rollup-darwin-x64": { "node_modules/@rollup/rollup-darwin-x64": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.0.tgz",
"integrity": "sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ==", "integrity": "sha512-3nJx0T+yptxMd+v93rBRxSPTAVCv8szu/fGZDJiKX7kvRe9sENj2ggXjCH/KK1xZEmJOhaNo0c9sGMgGdfkvEw==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@@ -2454,9 +2454,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-arm-gnueabihf": { "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.0.tgz",
"integrity": "sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==", "integrity": "sha512-Vb2e8p9b2lxxgqyOlBHmp6hJMu/HSU6g//6Tbr7x5V1DlPCHWLOm37nSIVK314f+IHzORyAQSqL7+9tELxX3zQ==",
"cpu": [ "cpu": [
"arm" "arm"
], ],
@@ -2467,9 +2467,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-arm-musleabihf": { "node_modules/@rollup/rollup-linux-arm-musleabihf": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.0.tgz",
"integrity": "sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==", "integrity": "sha512-Md60KsmC5ZIaRq/bYYDloklgU+XLEZwS2EXXVcSpiUw+13/ZASvSWQ/P92rQ9YDCL6EIoXxuQ829JkReqdYbGg==",
"cpu": [ "cpu": [
"arm" "arm"
], ],
@@ -2480,9 +2480,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-arm64-gnu": { "node_modules/@rollup/rollup-linux-arm64-gnu": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.0.tgz",
"integrity": "sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==", "integrity": "sha512-zL5rBFtJ+2EGnMRm2TqKjdjgFqlotSU+ZJEN37nV+fiD3I6Gy0dUh3jBWN0wSlcXVDEJYW7YBe+/2j0N9unb2w==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@@ -2493,9 +2493,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-arm64-musl": { "node_modules/@rollup/rollup-linux-arm64-musl": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.0.tgz",
"integrity": "sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==", "integrity": "sha512-s2xAyNkJqUdtRVgNK4NK4P9QttS538JuX/kfVQOdZDI5FIKVAUVdLW7qhGfmaySJ1EvN/Bnj9oPm5go9u8navg==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@@ -2506,9 +2506,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": { "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.0.tgz",
"integrity": "sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==", "integrity": "sha512-7F99yzVT67B7IUNMjLD9QCFDCyHkyCJMS1dywZrGgVFJao4VJ9szrIEgH67cR+bXQgEaY01ur/WSL6B0jtcLyA==",
"cpu": [ "cpu": [
"ppc64" "ppc64"
], ],
@@ -2519,9 +2519,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-riscv64-gnu": { "node_modules/@rollup/rollup-linux-riscv64-gnu": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.0.tgz",
"integrity": "sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==", "integrity": "sha512-leFtyiXisfa3Sg9pgZJwRKITWnrQfhtqDjCamnZhkZuIsk1FXmYwKoTkp6lsCgimIcneFFkHKp/yGLxDesga4g==",
"cpu": [ "cpu": [
"riscv64" "riscv64"
], ],
@@ -2532,9 +2532,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-s390x-gnu": { "node_modules/@rollup/rollup-linux-s390x-gnu": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.0.tgz",
"integrity": "sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==", "integrity": "sha512-FtOgui6qMJ4jbSXTxElsy/60LEe/3U0rXkkz2G5CJ9rbHPAvjMvI+3qF0A0fwLQ5hW+/ZC6PbnS2KfRW9JkgDQ==",
"cpu": [ "cpu": [
"s390x" "s390x"
], ],
@@ -2545,9 +2545,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-x64-gnu": { "node_modules/@rollup/rollup-linux-x64-gnu": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.0.tgz",
"integrity": "sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==", "integrity": "sha512-v6eiam/1w3HUfU/ZjzIDodencqgrSqzlNuNtiwH7PFJHYSo1ezL0/UIzmS2lpSJF1ORNaplXeKHYmmdt81vV2g==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@@ -2558,9 +2558,9 @@
] ]
}, },
"node_modules/@rollup/rollup-linux-x64-musl": { "node_modules/@rollup/rollup-linux-x64-musl": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.0.tgz",
"integrity": "sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==", "integrity": "sha512-OUhkSdpM5ofVlVU2k4CwVubYwiwu1a4jYWPpubzN7Vzao73GoPBowHcCfaRSFRz1SszJ3HIsk3dZYk4kzbqjgw==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@@ -2571,9 +2571,9 @@
] ]
}, },
"node_modules/@rollup/rollup-win32-arm64-msvc": { "node_modules/@rollup/rollup-win32-arm64-msvc": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.0.tgz",
"integrity": "sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==", "integrity": "sha512-uL7UYO/MNJPGL/yflybI+HI+n6+4vlfZmQZOCb4I+z/zy1wisHT3exh7oNQsnL6Eso0EUTEfgQ/PaGzzXf6XyQ==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@@ -2584,9 +2584,9 @@
] ]
}, },
"node_modules/@rollup/rollup-win32-ia32-msvc": { "node_modules/@rollup/rollup-win32-ia32-msvc": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.0.tgz",
"integrity": "sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w==", "integrity": "sha512-4WnSgaUiUmXILwFqREdOcqvSj6GD/7FrvSjhaDjmwakX9w4Z2F8JwiSP1AZZbuRkPqzi444UI5FPv33VKOWYFQ==",
"cpu": [ "cpu": [
"ia32" "ia32"
], ],
@@ -2597,9 +2597,9 @@
] ]
}, },
"node_modules/@rollup/rollup-win32-x64-msvc": { "node_modules/@rollup/rollup-win32-x64-msvc": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.16.4.tgz", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.0.tgz",
"integrity": "sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A==", "integrity": "sha512-ve+D8t1prRSRnF2S3pyDtTXDlvW1Pngbz76tjgYFQW1jxVSysmQCZfPoDAo4WP+Ano8zeYp85LsArZBI12HfwQ==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@@ -4020,9 +4020,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001612", "version": "1.0.30001614",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001614.tgz",
"integrity": "sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==", "integrity": "sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {
@@ -5095,9 +5095,9 @@
"dev": true "dev": true
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.4.749", "version": "1.4.750",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.749.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.750.tgz",
"integrity": "sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==", "integrity": "sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==",
"dev": true "dev": true
}, },
"node_modules/elliptic": { "node_modules/elliptic": {
@@ -5213,9 +5213,9 @@
} }
}, },
"node_modules/es-module-lexer": { "node_modules/es-module-lexer": {
"version": "1.5.0", "version": "1.5.2",
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.0.tgz", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.2.tgz",
"integrity": "sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==", "integrity": "sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==",
"dev": true "dev": true
}, },
"node_modules/esbuild": { "node_modules/esbuild": {
@@ -7858,9 +7858,9 @@
} }
}, },
"node_modules/patch-package/node_modules/yaml": { "node_modules/patch-package/node_modules/yaml": {
"version": "2.4.1", "version": "2.4.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.2.tgz",
"integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", "integrity": "sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==",
"dev": true, "dev": true,
"bin": { "bin": {
"yaml": "bin.mjs" "yaml": "bin.mjs"
@@ -8991,9 +8991,9 @@
} }
}, },
"node_modules/rollup": { "node_modules/rollup": {
"version": "4.16.4", "version": "4.17.0",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.16.4.tgz", "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.0.tgz",
"integrity": "sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA==", "integrity": "sha512-wZJSn0WMtWrxhYKQRt5Z6GIXlziOoMDFmbHmRfL3v+sBTAshx2DBq1AfMArB7eIjF63r4ocn2ZTAyUptg/7kmQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@types/estree": "1.0.5" "@types/estree": "1.0.5"
@@ -9006,22 +9006,22 @@
"npm": ">=8.0.0" "npm": ">=8.0.0"
}, },
"optionalDependencies": { "optionalDependencies": {
"@rollup/rollup-android-arm-eabi": "4.16.4", "@rollup/rollup-android-arm-eabi": "4.17.0",
"@rollup/rollup-android-arm64": "4.16.4", "@rollup/rollup-android-arm64": "4.17.0",
"@rollup/rollup-darwin-arm64": "4.16.4", "@rollup/rollup-darwin-arm64": "4.17.0",
"@rollup/rollup-darwin-x64": "4.16.4", "@rollup/rollup-darwin-x64": "4.17.0",
"@rollup/rollup-linux-arm-gnueabihf": "4.16.4", "@rollup/rollup-linux-arm-gnueabihf": "4.17.0",
"@rollup/rollup-linux-arm-musleabihf": "4.16.4", "@rollup/rollup-linux-arm-musleabihf": "4.17.0",
"@rollup/rollup-linux-arm64-gnu": "4.16.4", "@rollup/rollup-linux-arm64-gnu": "4.17.0",
"@rollup/rollup-linux-arm64-musl": "4.16.4", "@rollup/rollup-linux-arm64-musl": "4.17.0",
"@rollup/rollup-linux-powerpc64le-gnu": "4.16.4", "@rollup/rollup-linux-powerpc64le-gnu": "4.17.0",
"@rollup/rollup-linux-riscv64-gnu": "4.16.4", "@rollup/rollup-linux-riscv64-gnu": "4.17.0",
"@rollup/rollup-linux-s390x-gnu": "4.16.4", "@rollup/rollup-linux-s390x-gnu": "4.17.0",
"@rollup/rollup-linux-x64-gnu": "4.16.4", "@rollup/rollup-linux-x64-gnu": "4.17.0",
"@rollup/rollup-linux-x64-musl": "4.16.4", "@rollup/rollup-linux-x64-musl": "4.17.0",
"@rollup/rollup-win32-arm64-msvc": "4.16.4", "@rollup/rollup-win32-arm64-msvc": "4.17.0",
"@rollup/rollup-win32-ia32-msvc": "4.16.4", "@rollup/rollup-win32-ia32-msvc": "4.17.0",
"@rollup/rollup-win32-x64-msvc": "4.16.4", "@rollup/rollup-win32-x64-msvc": "4.17.0",
"fsevents": "~2.3.2" "fsevents": "~2.3.2"
} }
}, },
@@ -10828,9 +10828,9 @@
"dev": true "dev": true
}, },
"node_modules/ws": { "node_modules/ws": {
"version": "8.16.0", "version": "8.17.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz",
"integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
"dev": true, "dev": true,
"engines": { "engines": {
"node": ">=10.0.0" "node": ">=10.0.0"

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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." "bad_type_destination": "Firefly III no pot determinar el tipus de transacci\u00f3 a partir d'aquest compte de dest\u00ed."
}, },
"firefly": { "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", "spent": "Gastat",
"administration_owner": "Propietari de l'administraci\u00f3: {{email}}", "administration_owner": "Propietari de l'administraci\u00f3: {{email}}",
"administration_you": "El teu rol: {{role}}", "administration_you": "El teu rol: {{role}}",

View File

@@ -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." "bad_type_destination": "Firefly III no pot determinar el tipus de transacci\u00f3 a partir d'aquest compte de dest\u00ed."
}, },
"firefly": { "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", "spent": "Gastat",
"administration_owner": "Propietari de l'administraci\u00f3: {{email}}", "administration_owner": "Propietari de l'administraci\u00f3: {{email}}",
"administration_you": "El teu rol: {{role}}", "administration_you": "El teu rol: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Utraceno",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Utraceno",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan ikke bestemme transaktionstypen baseret p\u00e5 denne destinationskonto." "bad_type_destination": "Firefly III kan ikke bestemme transaktionstypen baseret p\u00e5 denne destinationskonto."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan ikke bestemme transaktionstypen baseret p\u00e5 denne destinationskonto." "bad_type_destination": "Firefly III kan ikke bestemme transaktionstypen baseret p\u00e5 denne destinationskonto."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kann die Buchungsart anhand dieses Zielkontos nicht ermitteln." "bad_type_destination": "Firefly III kann die Buchungsart anhand dieses Zielkontos nicht ermitteln."
}, },
"firefly": { "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", "spent": "Ausgegeben",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Ihre Funktion: {{role}}", "administration_you": "Ihre Funktion: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kann die Buchungsart anhand dieses Zielkontos nicht ermitteln." "bad_type_destination": "Firefly III kann die Buchungsart anhand dieses Zielkontos nicht ermitteln."
}, },
"firefly": { "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", "spent": "Ausgegeben",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Ihre Funktion: {{role}}", "administration_you": "Ihre Funktion: {{role}}",

View File

@@ -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." "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": { "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", "spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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." "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": { "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", "spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III no puede determinar el tipo de transacci\u00f3n basado en esta cuenta de destino." "bad_type_destination": "Firefly III no puede determinar el tipo de transacci\u00f3n basado en esta cuenta de destino."
}, },
"firefly": { "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", "spent": "Gastado",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III no puede determinar el tipo de transacci\u00f3n basado en esta cuenta de destino." "bad_type_destination": "Firefly III no puede determinar el tipo de transacci\u00f3n basado en esta cuenta de destino."
}, },
"firefly": { "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", "spent": "Gastado",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "K\u00e4ytetty",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "K\u00e4ytetty",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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." "bad_type_destination": "Firefly III ne peut pas d\u00e9terminer le type de transaction bas\u00e9 sur ce compte de destination."
}, },
"firefly": { "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", "spent": "D\u00e9pens\u00e9",
"administration_owner": "Propri\u00e9taire de l'administration : {{email}}", "administration_owner": "Propri\u00e9taire de l'administration : {{email}}",
"administration_you": "Votre r\u00f4le : {{role}}", "administration_you": "Votre r\u00f4le : {{role}}",

View File

@@ -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." "bad_type_destination": "Firefly III ne peut pas d\u00e9terminer le type de transaction bas\u00e9 sur ce compte de destination."
}, },
"firefly": { "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", "spent": "D\u00e9pens\u00e9",
"administration_owner": "Propri\u00e9taire de l'administration : {{email}}", "administration_owner": "Propri\u00e9taire de l'administration : {{email}}",
"administration_you": "Votre r\u00f4le : {{role}}", "administration_you": "Votre r\u00f4le : {{role}}",

View File

@@ -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." "bad_type_destination": "A Firefly III nem tudja eld\u00f6nteni a tranzakci\u00f3 t\u00edpus\u00e1t a c\u00e9lsz\u00e1mla alapj\u00e1n."
}, },
"firefly": { "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", "spent": "Elk\u00f6lt\u00f6tt",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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." "bad_type_destination": "A Firefly III nem tudja eld\u00f6nteni a tranzakci\u00f3 t\u00edpus\u00e1t a c\u00e9lsz\u00e1mla alapj\u00e1n."
}, },
"firefly": { "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", "spent": "Elk\u00f6lt\u00f6tt",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Menghabiskan",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Menghabiskan",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III non pu\u00f2 determinare il tipo di transazione in base a questo account di destinazione." "bad_type_destination": "Firefly III non pu\u00f2 determinare il tipo di transazione in base a questo account di destinazione."
}, },
"firefly": { "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", "spent": "Speso",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III non pu\u00f2 determinare il tipo di transazione in base a questo account di destinazione." "bad_type_destination": "Firefly III non pu\u00f2 determinare il tipo di transazione in base a questo account di destinazione."
}, },
"firefly": { "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", "spent": "Speso",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\uc9c0\ucd9c",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\uc9c0\ucd9c",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Brukt",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Brukt",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan het transactietype niet bepalen op basis van deze doelrekening." "bad_type_destination": "Firefly III kan het transactietype niet bepalen op basis van deze doelrekening."
}, },
"firefly": { "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", "spent": "Uitgegeven",
"administration_owner": "Grootboekeigenaar: {{email}}", "administration_owner": "Grootboekeigenaar: {{email}}",
"administration_you": "Jouw rol: {{role}}", "administration_you": "Jouw rol: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III kan het transactietype niet bepalen op basis van deze doelrekening." "bad_type_destination": "Firefly III kan het transactietype niet bepalen op basis van deze doelrekening."
}, },
"firefly": { "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", "spent": "Uitgegeven",
"administration_owner": "Grootboekeigenaar: {{email}}", "administration_owner": "Grootboekeigenaar: {{email}}",
"administration_you": "Jouw rol: {{role}}", "administration_you": "Jouw rol: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Brukt",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Brukt",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Wydano",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Wydano",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III n\u00e3o conseguiu determinar o tipo de transa\u00e7\u00e3o baseado nesta conta destino." "bad_type_destination": "Firefly III n\u00e3o conseguiu determinar o tipo de transa\u00e7\u00e3o baseado nesta conta destino."
}, },
"firefly": { "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", "spent": "Gasto",
"administration_owner": "Propriet\u00e1rio da administra\u00e7\u00e3o: {{email}}", "administration_owner": "Propriet\u00e1rio da administra\u00e7\u00e3o: {{email}}",
"administration_you": "Sua fun\u00e7\u00e3o: {{role}}", "administration_you": "Sua fun\u00e7\u00e3o: {{role}}",

View File

@@ -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." "bad_type_destination": "O Firefly III n\u00e3o consegue determinar o tipo de transa\u00e7\u00e3o baseado nesta conta de destino."
}, },
"firefly": { "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", "spent": "Gasto",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III n\u00e3o conseguiu determinar o tipo de transa\u00e7\u00e3o baseado nesta conta destino." "bad_type_destination": "Firefly III n\u00e3o conseguiu determinar o tipo de transa\u00e7\u00e3o baseado nesta conta destino."
}, },
"firefly": { "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", "spent": "Gasto",
"administration_owner": "Propriet\u00e1rio da administra\u00e7\u00e3o: {{email}}", "administration_owner": "Propriet\u00e1rio da administra\u00e7\u00e3o: {{email}}",
"administration_you": "Sua fun\u00e7\u00e3o: {{role}}", "administration_you": "Sua fun\u00e7\u00e3o: {{role}}",

View File

@@ -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." "bad_type_destination": "O Firefly III n\u00e3o consegue determinar o tipo de transa\u00e7\u00e3o baseado nesta conta de destino."
}, },
"firefly": { "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", "spent": "Gasto",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III nu poate determina tipul de tranzac\u021bie bazat pe acest cont de destina\u021bie." "bad_type_destination": "Firefly III nu poate determina tipul de tranzac\u021bie bazat pe acest cont de destina\u021bie."
}, },
"firefly": { "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", "spent": "Cheltuit",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III nu poate determina tipul de tranzac\u021bie bazat pe acest cont de destina\u021bie." "bad_type_destination": "Firefly III nu poate determina tipul de tranzac\u021bie bazat pe acest cont de destina\u021bie."
}, },
"firefly": { "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", "spent": "Cheltuit",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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." "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": { "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", "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_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}}", "administration_you": "\u0412\u0430\u0448\u0430 \u0440\u043e\u043b\u044c: {{role}}",

View File

@@ -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." "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": { "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", "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_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}}", "administration_you": "\u0412\u0430\u0448\u0430 \u0440\u043e\u043b\u044c: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Utraten\u00e9",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Utraten\u00e9",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Na podlagi tega ciljnega ra\u010duna Firefly III ne more dolo\u010diti vrste transakcije." "bad_type_destination": "Na podlagi tega ciljnega ra\u010duna Firefly III ne more dolo\u010diti vrste transakcije."
}, },
"firefly": { "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", "spent": "Porabljeno",
"administration_owner": "Lastnik administracije: {{email}}", "administration_owner": "Lastnik administracije: {{email}}",
"administration_you": "Va\u0161a vloga: {{role}}", "administration_you": "Va\u0161a vloga: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Na podlagi tega ciljnega ra\u010duna Firefly III ne more dolo\u010diti vrste transakcije." "bad_type_destination": "Na podlagi tega ciljnega ra\u010duna Firefly III ne more dolo\u010diti vrste transakcije."
}, },
"firefly": { "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", "spent": "Porabljeno",
"administration_owner": "Lastnik administracije: {{email}}", "administration_owner": "Lastnik administracije: {{email}}",
"administration_you": "Va\u0161a vloga: {{role}}", "administration_you": "Va\u0161a vloga: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spenderat",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Din roll: {{role}}", "administration_you": "Din roll: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spenderat",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Din roll: {{role}}", "administration_you": "Din roll: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Harcanan",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Harcanan",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "Spent",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u0110\u00e3 chi",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u0110\u00e3 chi",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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" "bad_type_destination": "Firefly III \u65e0\u6cd5\u786e\u5b9a\u57fa\u4e8e\u6b64\u76ee\u6807\u5e10\u6237\u7684\u4ea4\u6613\u7c7b\u578b\u3002"
}, },
"firefly": { "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", "spent": "\u652f\u51fa",
"administration_owner": "\u7ba1\u7406\u5458\u5f52\u5c5e: {{email}}", "administration_owner": "\u7ba1\u7406\u5458\u5f52\u5c5e: {{email}}",
"administration_you": "\u4f60\u7684\u89d2\u8272: {{role}}", "administration_you": "\u4f60\u7684\u89d2\u8272: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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" "bad_type_destination": "Firefly III \u65e0\u6cd5\u786e\u5b9a\u57fa\u4e8e\u6b64\u76ee\u6807\u5e10\u6237\u7684\u4ea4\u6613\u7c7b\u578b\u3002"
}, },
"firefly": { "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", "spent": "\u652f\u51fa",
"administration_owner": "\u7ba1\u7406\u5458\u5f52\u5c5e: {{email}}", "administration_owner": "\u7ba1\u7406\u5458\u5f52\u5c5e: {{email}}",
"administration_you": "\u4f60\u7684\u89d2\u8272: {{role}}", "administration_you": "\u4f60\u7684\u89d2\u8272: {{role}}",

View File

@@ -27,6 +27,15 @@
"bad_type_destination": "Firefly III can't determine the transaction type based on this destination account." "bad_type_destination": "Firefly III can't determine the transaction type based on this destination account."
}, },
"firefly": { "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", "spent": "\u652f\u51fa",
"administration_owner": "Administration owner: {{email}}", "administration_owner": "Administration owner: {{email}}",
"administration_you": "Your role: {{role}}", "administration_you": "Your role: {{role}}",

View File

@@ -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_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_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.", "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_STORE_TRANSACTION": "\u0130\u015flem olu\u015fturma sonras\u0131",
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update", "webhook_trigger_UPDATE_TRANSACTION": "\u0130\u015flem g\u00fcncelleme sonras\u0131",
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete", "webhook_trigger_DESTROY_TRANSACTION": "\u0130\u015flem silme sonras\u0131",
"webhook_response_TRANSACTIONS": "Transaction details", "webhook_response_TRANSACTIONS": "\u0130\u015flem detaylar\u0131",
"webhook_response_ACCOUNTS": "Account details", "webhook_response_ACCOUNTS": "Hesap detaylar\u0131",
"webhook_response_none_NONE": "No details", "webhook_response_none_NONE": "Detay yok",
"webhook_delivery_JSON": "JSON", "webhook_delivery_JSON": "JSON",
"actions": "Eylemler", "actions": "Eylemler",
"meta_data": "Meta veri", "meta_data": "Meta veri",
"webhook_messages": "Webhook message", "webhook_messages": "Webhook message",
"inactive": "Etkisiz", "inactive": "Etkisiz",
"no_webhook_messages": "There are no webhook messages", "no_webhook_messages": "Webhook mesaj\u0131 yok",
"inspect": "Inspect", "inspect": "\u0130ncele",
"create_new_webhook": "Create new webhook", "create_new_webhook": "Yeni webhook olu\u015ftur",
"webhooks": "Web kancalar\u0131", "webhooks": "Web kancalar\u0131",
"webhook_trigger_form_help": "Indicate on what event the webhook will trigger", "webhook_trigger_form_help": "Webhook'un hangi olay\u0131 tetikleyece\u011fini belirtin",
"webhook_response_form_help": "Indicate what the webhook must submit to the URL.", "webhook_response_form_help": "Webhook'un URL'ye ne g\u00f6ndermesi gerekti\u011fini belirleyin.",
"webhook_delivery_form_help": "Which format the webhook must deliver data in.", "webhook_delivery_form_help": "Webhook'un verileri hangi formatta iletmesi gerek.",
"webhook_active_form_help": "The webhook must be active or it won't be called.", "webhook_active_form_help": "Webhook'un etkin olmas\u0131 gerekir, aksi takdirde \u00e7a\u011fr\u0131lmaz.",
"edit_webhook_js": "Edit webhook \"{title}\"", "edit_webhook_js": "Edit webhook \"{title}\"",
"webhook_was_triggered": "The webhook was triggered on the indicated transaction. Please wait for results to appear.", "webhook_was_triggered": "The webhook was triggered on the indicated transaction. Please wait for results to appear.",
"view_message": "View message", "view_message": "View message",

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(без етикети)', 'no_tags' => '(без етикети)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Добавете пари към касичка ":name"', 'add_money_to_piggy' => 'Добавете пари към касичка ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Име на банката', 'bank_name' => 'Име на банката',
'bank_balance' => 'Салдо', 'bank_balance' => 'Салдо',
'current_balance' => 'Current balance',
'savings_balance' => 'Спестявания', 'savings_balance' => 'Спестявания',
'credit_card_limit' => 'Лимит по кредитна карта', 'credit_card_limit' => 'Лимит по кредитна карта',
'automatch' => 'Автоматично съчетаване', 'automatch' => 'Автоматично съчетаване',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(cap etiqueta)', 'no_tags' => '(cap etiqueta)',
'nothing_found' => '(no s\'ha trobat res)', '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: // piggy banks:
'event_history' => 'Historial d\'esdeveniments', 'event_history' => 'Historial d\'esdeveniments',
'add_money_to_piggy' => 'Afegeix diners a la guardiola ":name"', 'add_money_to_piggy' => 'Afegeix diners a la guardiola ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Nom del banc', 'bank_name' => 'Nom del banc',
'bank_balance' => 'Saldo', 'bank_balance' => 'Saldo',
'current_balance' => 'Current balance',
'savings_balance' => 'Saldo d\'estalvis', 'savings_balance' => 'Saldo d\'estalvis',
'credit_card_limit' => 'Límit de la targeta de crèdit', 'credit_card_limit' => 'Límit de la targeta de crèdit',
'automatch' => 'Coincidir automàticament', 'automatch' => 'Coincidir automàticament',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(žádné štítky)', 'no_tags' => '(žádné štítky)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Vložit peníze do pokladničky ":name"', 'add_money_to_piggy' => 'Vložit peníze do pokladničky ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Název banky', 'bank_name' => 'Název banky',
'bank_balance' => 'Zůstatek', 'bank_balance' => 'Zůstatek',
'current_balance' => 'Current balance',
'savings_balance' => 'Zůstatek úspor', 'savings_balance' => 'Zůstatek úspor',
'credit_card_limit' => 'Limit kreditní karty', 'credit_card_limit' => 'Limit kreditní karty',
'automatch' => 'Hledat shodu automaticky', 'automatch' => 'Hledat shodu automaticky',

View File

@@ -511,13 +511,13 @@ return [
'search_modifier_category_ends' => 'Kategori slutter med ":value"', 'search_modifier_category_ends' => 'Kategori slutter med ":value"',
'search_modifier_not_category_ends' => 'Kategori slutter ikke med ":value"', 'search_modifier_not_category_ends' => 'Kategori slutter ikke med ":value"',
'search_modifier_category_starts' => 'Kategori starter 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_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_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_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_bill_contains' => 'Regningen indeholder ":value"',
'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"',
'search_modifier_bill_ends' => 'Bill slutter med ":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_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_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_external_url_starts' => 'External URL does not start with ":trigger_value"',
'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', 'rule_trigger_not_currency_is' => 'Valuta er ikke ":trigger_value"',
'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":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_id' => 'Transaction ID is not ":trigger_value"',
'rule_trigger_not_journal_id' => 'Transaction journal 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"', 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"',
@@ -1676,7 +1676,7 @@ return [
'create_currency' => 'Opret en ny valuta', 'create_currency' => 'Opret en ny valuta',
'store_currency' => 'Gem ny valuta', 'store_currency' => 'Gem ny valuta',
'update_currency' => 'Opdater 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.', '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_currency' => 'Kan ikke slette :name , fordi den stadig er i brug.',
'cannot_delete_fallback_currency' => ':name er systemet fallback valuta og kan ikke slettes.', 'cannot_delete_fallback_currency' => ':name er systemet fallback valuta og kan ikke slettes.',
@@ -2152,7 +2152,7 @@ return [
'select_period' => 'Select a period', 'select_period' => 'Select a period',
// menu and titles, should be recycled as often as possible: // menu and titles, should be recycled as often as possible:
'currency' => 'Currency', 'currency' => 'Valuta',
'preferences' => 'Preferences', 'preferences' => 'Preferences',
'logout' => 'Logout', 'logout' => 'Logout',
'logout_other_sessions' => 'Logout all other sessions', 'logout_other_sessions' => 'Logout all other sessions',
@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ingen mærker)', 'no_tags' => '(ingen mærker)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Tilføj penge til sparegrisen ":name"', 'add_money_to_piggy' => 'Tilføj penge til sparegrisen ":name"',
@@ -2710,7 +2720,7 @@ return [
'create_new_recurrence' => 'Create new recurring transaction', 'create_new_recurrence' => 'Create new recurring transaction',
'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', '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.', '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_recurring' => 'Mandatory recurrence information',
'mandatory_for_transaction' => 'Mandatory transaction information', 'mandatory_for_transaction' => 'Mandatory transaction information',
'optional_for_recurring' => 'Optional recurrence information', 'optional_for_recurring' => 'Optional recurrence information',
@@ -2756,10 +2766,10 @@ return [
*/ */
// new lines for summary controller. // new lines for summary controller.
'box_balance_in_currency' => 'Balance (:currency)', 'box_balance_in_currency' => 'Saldo (:currency)',
'box_spent_in_currency' => 'Spent (:currency)', 'box_spent_in_currency' => 'Forbrug (:currency)',
'box_earned_in_currency' => 'Earned (: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_paid_in_currency' => 'Betalte regninger (:currency)',
'box_bill_unpaid_in_currency' => 'Ubetalte regninger (:currency)', 'box_bill_unpaid_in_currency' => 'Ubetalte regninger (:currency)',
'box_left_to_spend_in_currency' => 'Left to spend (:currency)', 'box_left_to_spend_in_currency' => 'Left to spend (:currency)',
@@ -2817,8 +2827,8 @@ return [
'ale_action_update_amount' => 'Updated amount', 'ale_action_update_amount' => 'Updated amount',
// dashboard // dashboard
'enable_auto_convert' => 'Enable currency conversion', 'enable_auto_convert' => 'Aktiver valutakonvertering',
'disable_auto_convert' => 'Disable currency conversion', 'disable_auto_convert' => 'Deaktivér valutakonvertering',
]; ];
/* /*

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Bank navn', 'bank_name' => 'Bank navn',
'bank_balance' => 'Saldo', 'bank_balance' => 'Saldo',
'current_balance' => 'Current balance',
'savings_balance' => 'Saldo for opsparingskonto', 'savings_balance' => 'Saldo for opsparingskonto',
'credit_card_limit' => 'Kreditkort grænse', 'credit_card_limit' => 'Kreditkort grænse',
'automatch' => 'Automatisk afstemning', 'automatch' => 'Automatisk afstemning',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(keine Schlagwörter)', 'no_tags' => '(keine Schlagwörter)',
'nothing_found' => '(nichts gefunden)', '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: // piggy banks:
'event_history' => 'Ereignisverlauf', 'event_history' => 'Ereignisverlauf',
'add_money_to_piggy' => 'Geld zum Sparschwein „:name” übertragen', 'add_money_to_piggy' => 'Geld zum Sparschwein „:name” übertragen',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Name der Bank', 'bank_name' => 'Name der Bank',
'bank_balance' => 'Kontostand', 'bank_balance' => 'Kontostand',
'current_balance' => 'Current balance',
'savings_balance' => 'Sparguthaben', 'savings_balance' => 'Sparguthaben',
'credit_card_limit' => 'Kreditkartenlimit', 'credit_card_limit' => 'Kreditkartenlimit',
'automatch' => 'Automatisch reagieren', 'automatch' => 'Automatisch reagieren',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(χωρίς ετικέτες)', 'no_tags' => '(χωρίς ετικέτες)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"', 'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Όνομα τράπεζας', 'bank_name' => 'Όνομα τράπεζας',
'bank_balance' => 'Υπόλοιπο', 'bank_balance' => 'Υπόλοιπο',
'current_balance' => 'Current balance',
'savings_balance' => 'Υπόλοιπο αποταμιεύσεων', 'savings_balance' => 'Υπόλοιπο αποταμιεύσεων',
'credit_card_limit' => 'Όριο πιστωτικής κάρτας', 'credit_card_limit' => 'Όριο πιστωτικής κάρτας',
'automatch' => 'Αυτόματο ταίριασμα', 'automatch' => 'Αυτόματο ταίριασμα',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)', 'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"', 'add_money_to_piggy' => 'Add money to piggy bank ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Bank name', 'bank_name' => 'Bank name',
'bank_balance' => 'Balance', 'bank_balance' => 'Balance',
'current_balance' => 'Current balance',
'savings_balance' => 'Savings balance', 'savings_balance' => 'Savings balance',
'credit_card_limit' => 'Credit card limit', 'credit_card_limit' => 'Credit card limit',
'automatch' => 'Match automatically', 'automatch' => 'Match automatically',

View File

@@ -28,7 +28,7 @@ return [
// new user: // new user:
'bank_name' => 'Bank name', 'bank_name' => 'Bank name',
'bank_balance' => 'Balance', 'bank_balance' => 'Balance',
'current_balance' => 'Current balance', 'current_balance' => 'Current balance',
'savings_balance' => 'Savings balance', 'savings_balance' => 'Savings balance',
'credit_card_limit' => 'Credit card limit', 'credit_card_limit' => 'Credit card limit',
'automatch' => 'Match automatically', 'automatch' => 'Match automatically',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(sin etiquetas)', 'no_tags' => '(sin etiquetas)',
'nothing_found' => '(no se encontró nada)', '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: // piggy banks:
'event_history' => 'Historial de eventos', 'event_history' => 'Historial de eventos',
'add_money_to_piggy' => 'Añadir dinero a la hucha ":name"', 'add_money_to_piggy' => 'Añadir dinero a la hucha ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Banco', 'bank_name' => 'Banco',
'bank_balance' => 'Saldo', 'bank_balance' => 'Saldo',
'current_balance' => 'Current balance',
'savings_balance' => 'Saldo de ahorro', 'savings_balance' => 'Saldo de ahorro',
'credit_card_limit' => 'Límite de la tarjeta de crédito', 'credit_card_limit' => 'Límite de la tarjeta de crédito',
'automatch' => 'Coinciden automáticamente', 'automatch' => 'Coinciden automáticamente',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(ei tägejä)', 'no_tags' => '(ei tägejä)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Lisää rahaa säästöpossuun ":name"', 'add_money_to_piggy' => 'Lisää rahaa säästöpossuun ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Pankin nimi', 'bank_name' => 'Pankin nimi',
'bank_balance' => 'Saldo', 'bank_balance' => 'Saldo',
'current_balance' => 'Current balance',
'savings_balance' => 'Säästötilien saldo', 'savings_balance' => 'Säästötilien saldo',
'credit_card_limit' => 'Luottoraja', 'credit_card_limit' => 'Luottoraja',
'automatch' => 'Vertaile automaattisesti', 'automatch' => 'Vertaile automaattisesti',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(pas de mot-clé)', 'no_tags' => '(pas de mot-clé)',
'nothing_found' => '(aucun résultat)', '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: // piggy banks:
'event_history' => 'Historique des événements', 'event_history' => 'Historique des événements',
'add_money_to_piggy' => 'Ajouter de largent à la tirelire ":name"', 'add_money_to_piggy' => 'Ajouter de largent à la tirelire ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Nom de la banque', 'bank_name' => 'Nom de la banque',
'bank_balance' => 'Solde', 'bank_balance' => 'Solde',
'current_balance' => 'Current balance',
'savings_balance' => 'Solde de l\'épargne', 'savings_balance' => 'Solde de l\'épargne',
'credit_card_limit' => 'Limite de carte de crédit', 'credit_card_limit' => 'Limite de carte de crédit',
'automatch' => 'Correspondre automatiquement', 'automatch' => 'Correspondre automatiquement',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(nincsenek címkék)', 'no_tags' => '(nincsenek címkék)',
'nothing_found' => '(nincs találat)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Pénz hozzáadása ":name" malacperselyhez', 'add_money_to_piggy' => 'Pénz hozzáadása ":name" malacperselyhez',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Bank neve', 'bank_name' => 'Bank neve',
'bank_balance' => 'Egyenleg', 'bank_balance' => 'Egyenleg',
'current_balance' => 'Current balance',
'savings_balance' => 'Megtakarítási egyenleg', 'savings_balance' => 'Megtakarítási egyenleg',
'credit_card_limit' => 'Hitelkártya limit', 'credit_card_limit' => 'Hitelkártya limit',
'automatch' => 'Automatikus egyezés', 'automatch' => 'Automatikus egyezés',

View File

@@ -2399,6 +2399,16 @@ return [
'no_tags' => '(no tags)', 'no_tags' => '(no tags)',
'nothing_found' => '(nothing found)', '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: // piggy banks:
'event_history' => 'Event history', 'event_history' => 'Event history',
'add_money_to_piggy' => 'Tambahkan uang ke celengan ":name"', 'add_money_to_piggy' => 'Tambahkan uang ke celengan ":name"',

View File

@@ -37,6 +37,7 @@ return [
// new user: // new user:
'bank_name' => 'Nama Bank', 'bank_name' => 'Nama Bank',
'bank_balance' => 'Keseimbangan', 'bank_balance' => 'Keseimbangan',
'current_balance' => 'Current balance',
'savings_balance' => 'Saldo tabungan', 'savings_balance' => 'Saldo tabungan',
'credit_card_limit' => 'Batas kartu kredit', 'credit_card_limit' => 'Batas kartu kredit',
'automatch' => 'Cocokkan secara otomatis', 'automatch' => 'Cocokkan secara otomatis',

Some files were not shown because too many files have changed in this diff Show More