mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 03:39:00 +00:00
Auto commit for release 'branch-v6.2' on 2024-12-27
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ConvertsDatesToUTC.php
|
* ConvertsDatesToUTC.php
|
||||||
* Copyright (c) 2024 james@firefly-iii.org.
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
@@ -74,7 +75,9 @@ class ConvertsDatesToUTC extends Command
|
|||||||
public function handle(): int
|
public function handle(): int
|
||||||
{
|
{
|
||||||
$this->friendlyWarning('Please do not use this command.');
|
$this->friendlyWarning('Please do not use this command.');
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string $model
|
* @var string $model
|
||||||
* @var array $fields
|
* @var array $fields
|
||||||
|
@@ -66,13 +66,13 @@ class CorrectsDatabase extends Command
|
|||||||
'correction:ibans',
|
'correction:ibans',
|
||||||
'correction:account-order',
|
'correction:account-order',
|
||||||
'correction:meta-fields',
|
'correction:meta-fields',
|
||||||
'correction:opening-balance-currencies',
|
'correction:opening-balance-currencies',
|
||||||
'correction:long-descriptions',
|
'correction:long-descriptions',
|
||||||
'correction:recurring-transactions',
|
'correction:recurring-transactions',
|
||||||
'correction:frontpage-accounts',
|
'correction:frontpage-accounts',
|
||||||
'correction:group-accounts',
|
'correction:group-accounts',
|
||||||
'correction:recalculates-liabilities',
|
'correction:recalculates-liabilities',
|
||||||
'correction:preferences',
|
'correction:preferences',
|
||||||
// 'correction:transaction-types', // resource heavy, disabled.
|
// 'correction:transaction-types', // resource heavy, disabled.
|
||||||
// 'correction:recalculate-native-amounts', // not necessary, disabled.
|
// 'correction:recalculate-native-amounts', // not necessary, disabled.
|
||||||
'firefly-iii:report-integrity',
|
'firefly-iii:report-integrity',
|
||||||
|
@@ -52,6 +52,7 @@ class CorrectsFrontpageAccounts extends Command
|
|||||||
$this->fixPreference($preference);
|
$this->fixPreference($preference);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -43,7 +43,7 @@ class CorrectsLongDescriptions extends Command
|
|||||||
*/
|
*/
|
||||||
public function handle(): int
|
public function handle(): int
|
||||||
{
|
{
|
||||||
$journals = TransactionJournal::where(DB::raw('LENGTH(description)'),'>', self::MAX_LENGTH)->get(['id', 'description']);
|
$journals = TransactionJournal::where(DB::raw('LENGTH(description)'), '>', self::MAX_LENGTH)->get(['id', 'description']);
|
||||||
$count = 0;
|
$count = 0;
|
||||||
|
|
||||||
/** @var TransactionJournal $journal */
|
/** @var TransactionJournal $journal */
|
||||||
@@ -56,7 +56,7 @@ class CorrectsLongDescriptions extends Command
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$groups = TransactionGroup::where(DB::raw('LENGTH(title)'),'>', self::MAX_LENGTH)->get(['id', 'title']);
|
$groups = TransactionGroup::where(DB::raw('LENGTH(title)'), '>', self::MAX_LENGTH)->get(['id', 'title']);
|
||||||
|
|
||||||
/** @var TransactionGroup $group */
|
/** @var TransactionGroup $group */
|
||||||
foreach ($groups as $group) {
|
foreach ($groups as $group) {
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CorrectsTimezoneInformation.php
|
* CorrectsTimezoneInformation.php
|
||||||
* Copyright (c) 2024 james@firefly-iii.org.
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
|
@@ -63,7 +63,7 @@ class RemovesOrphanedTransactions extends Command
|
|||||||
;
|
;
|
||||||
$count = $set->count();
|
$count = $set->count();
|
||||||
if (0 === $count) {
|
if (0 === $count) {
|
||||||
//$this->friendlyPositive('No orphaned journals.');
|
// $this->friendlyPositive('No orphaned journals.');
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@@ -48,7 +48,7 @@ class ReportsIntegrity extends Command
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
$commands = [
|
$commands = [
|
||||||
//'firefly-iii:add-timezones-to-dates',
|
// 'firefly-iii:add-timezones-to-dates',
|
||||||
'integrity:empty-objects',
|
'integrity:empty-objects',
|
||||||
'integrity:total-sums',
|
'integrity:total-sums',
|
||||||
];
|
];
|
||||||
|
@@ -39,7 +39,6 @@ class ReportsSums extends Command
|
|||||||
protected $description = 'Report on the total sum of transactions. Must be 0.';
|
protected $description = 'Report on the total sum of transactions. Must be 0.';
|
||||||
protected $signature = 'integrity:total-sums';
|
protected $signature = 'integrity:total-sums';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the console command.
|
* Execute the console command.
|
||||||
*/
|
*/
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
/*
|
/*
|
||||||
* UpgradesNativeAmounts.php
|
* UpgradesNativeAmounts.php
|
||||||
* Copyright (c) 2024 james@firefly-iii.org.
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
@@ -30,14 +32,12 @@ class UpgradesNativeAmounts extends Command
|
|||||||
use ShowsFriendlyMessages;
|
use ShowsFriendlyMessages;
|
||||||
public const string CONFIG_NAME = '620_native_amounts';
|
public const string CONFIG_NAME = '620_native_amounts';
|
||||||
|
|
||||||
protected $description = 'Runs the native amounts calculations.';
|
protected $description = 'Runs the native amounts calculations.';
|
||||||
|
|
||||||
protected $signature = 'upgrade:620-native-amounts {--F|force : Force the execution of this command.}';
|
protected $signature = 'upgrade:620-native-amounts {--F|force : Force the execution of this command.}';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the console command.
|
* Execute the console command.
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
*/
|
||||||
public function handle(): int
|
public function handle(): int
|
||||||
{
|
{
|
||||||
@@ -55,9 +55,6 @@ class UpgradesNativeAmounts extends Command
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
private function isExecuted(): bool
|
private function isExecuted(): bool
|
||||||
{
|
{
|
||||||
$configVar = app('fireflyconfig')->get(self::CONFIG_NAME, false);
|
$configVar = app('fireflyconfig')->get(self::CONFIG_NAME, false);
|
||||||
@@ -68,10 +65,6 @@ class UpgradesNativeAmounts extends Command
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
private function markAsExecuted(): void
|
private function markAsExecuted(): void
|
||||||
{
|
{
|
||||||
app('fireflyconfig')->set(self::CONFIG_NAME, true);
|
app('fireflyconfig')->set(self::CONFIG_NAME, true);
|
||||||
|
@@ -36,7 +36,6 @@ use FireflyIII\Repositories\Journal\JournalCLIRepositoryInterface;
|
|||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
use Illuminate\Console\Command;
|
use Illuminate\Console\Command;
|
||||||
|
|
||||||
|
|
||||||
class UpgradesVariousCurrencyInformation extends Command
|
class UpgradesVariousCurrencyInformation extends Command
|
||||||
{
|
{
|
||||||
use ShowsFriendlyMessages;
|
use ShowsFriendlyMessages;
|
||||||
|
@@ -133,8 +133,8 @@ class BillController extends Controller
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
$currency = $bill->transactionCurrency;
|
$currency = $bill->transactionCurrency;
|
||||||
if($this->convertToNative) {
|
if ($this->convertToNative) {
|
||||||
$currency = $this->defaultCurrency;
|
$currency = $this->defaultCurrency;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,9 +162,9 @@ class BillController extends Controller
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
$currencyId = $bill->transaction_currency_id;
|
$currencyId = $bill->transaction_currency_id;
|
||||||
$amountMin = $bill->amount_min;
|
$amountMin = $bill->amount_min;
|
||||||
$amountMax = $bill->amount_max;
|
$amountMax = $bill->amount_max;
|
||||||
if($this->convertToNative && $currencyId !== $this->defaultCurrency->id) {
|
if ($this->convertToNative && $currencyId !== $this->defaultCurrency->id) {
|
||||||
$amountMin = $bill->native_amount_min;
|
$amountMin = $bill->native_amount_min;
|
||||||
$amountMax = $bill->native_amount_max;
|
$amountMax = $bill->native_amount_max;
|
||||||
}
|
}
|
||||||
@@ -178,10 +178,10 @@ class BillController extends Controller
|
|||||||
$chartData[2]['entries'][$date] = '0';
|
$chartData[2]['entries'][$date] = '0';
|
||||||
}
|
}
|
||||||
$amount = bcmul($journal['amount'], '-1');
|
$amount = bcmul($journal['amount'], '-1');
|
||||||
if($this->convertToNative && $currencyId !== $journal['currency_id']) {
|
if ($this->convertToNative && $currencyId !== $journal['currency_id']) {
|
||||||
$amount = bcmul($journal['native_amount'], '-1');
|
$amount = bcmul($journal['native_amount'], '-1');
|
||||||
}
|
}
|
||||||
if($this->convertToNative && $currencyId === $journal['foreign_currency_id']) {
|
if ($this->convertToNative && $currencyId === $journal['foreign_currency_id']) {
|
||||||
$amount = bcmul($journal['foreign_amount'], '-1');
|
$amount = bcmul($journal['foreign_amount'], '-1');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -39,7 +39,7 @@ class Preference extends Model
|
|||||||
use ReturnsIntegerUserIdTrait;
|
use ReturnsIntegerUserIdTrait;
|
||||||
|
|
||||||
protected $casts
|
protected $casts
|
||||||
= [
|
= [
|
||||||
'created_at' => 'datetime',
|
'created_at' => 'datetime',
|
||||||
'updated_at' => 'datetime',
|
'updated_at' => 'datetime',
|
||||||
'data' => 'array',
|
'data' => 'array',
|
||||||
@@ -56,7 +56,7 @@ class Preference extends Model
|
|||||||
{
|
{
|
||||||
if (auth()->check()) {
|
if (auth()->check()) {
|
||||||
/** @var User $user */
|
/** @var User $user */
|
||||||
$user = auth()->user();
|
$user = auth()->user();
|
||||||
|
|
||||||
// some preferences do not have an administration ID.
|
// some preferences do not have an administration ID.
|
||||||
// some need it, to make sure the correct one is selected.
|
// some need it, to make sure the correct one is selected.
|
||||||
@@ -64,8 +64,8 @@ class Preference extends Model
|
|||||||
$userGroupId = 0 === $userGroupId ? null : $userGroupId;
|
$userGroupId = 0 === $userGroupId ? null : $userGroupId;
|
||||||
|
|
||||||
/** @var null|Preference $preference */
|
/** @var null|Preference $preference */
|
||||||
$preference = null;
|
$preference = null;
|
||||||
$items = config('firefly.admin_specific_prefs');
|
$items = config('firefly.admin_specific_prefs');
|
||||||
if (null !== $userGroupId && in_array($value, $items, true)) {
|
if (null !== $userGroupId && in_array($value, $items, true)) {
|
||||||
// find a preference with a specific user_group_id
|
// find a preference with a specific user_group_id
|
||||||
$preference = $user->preferences()->where('user_group_id', $userGroupId)->where('name', $value)->first();
|
$preference = $user->preferences()->where('user_group_id', $userGroupId)->where('name', $value)->first();
|
||||||
@@ -82,7 +82,7 @@ class Preference extends Model
|
|||||||
if (null !== $preference) {
|
if (null !== $preference) {
|
||||||
return $preference;
|
return $preference;
|
||||||
}
|
}
|
||||||
$default = config('firefly.default_preferences');
|
$default = config('firefly.default_preferences');
|
||||||
if (array_key_exists($value, $default)) {
|
if (array_key_exists($value, $default)) {
|
||||||
$preference = new self();
|
$preference = new self();
|
||||||
$preference->name = $value;
|
$preference->name = $value;
|
||||||
|
@@ -46,19 +46,19 @@ class Transaction extends Model
|
|||||||
|
|
||||||
protected $casts
|
protected $casts
|
||||||
= [
|
= [
|
||||||
'created_at' => 'datetime',
|
'created_at' => 'datetime',
|
||||||
'updated_at' => 'datetime',
|
'updated_at' => 'datetime',
|
||||||
'deleted_at' => 'datetime',
|
'deleted_at' => 'datetime',
|
||||||
'identifier' => 'int',
|
'identifier' => 'int',
|
||||||
'encrypted' => 'boolean', // model does not have these fields though
|
'encrypted' => 'boolean', // model does not have these fields though
|
||||||
'bill_name_encrypted' => 'boolean',
|
'bill_name_encrypted' => 'boolean',
|
||||||
'reconciled' => 'boolean',
|
'reconciled' => 'boolean',
|
||||||
'balance_dirty' => 'boolean',
|
'balance_dirty' => 'boolean',
|
||||||
'balance_before' => 'string',
|
'balance_before' => 'string',
|
||||||
'balance_after' => 'string',
|
'balance_after' => 'string',
|
||||||
'date' => 'datetime',
|
'date' => 'datetime',
|
||||||
'amount' => 'string',
|
'amount' => 'string',
|
||||||
'foreign_amount' => 'string',
|
'foreign_amount' => 'string',
|
||||||
'native_amount' => 'string',
|
'native_amount' => 'string',
|
||||||
'native_foreign_amount' => 'string',
|
'native_foreign_amount' => 'string',
|
||||||
];
|
];
|
||||||
|
@@ -61,7 +61,8 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
$search->whereLike('name', sprintf('%%%s', $query));
|
$search->whereLike('name', sprintf('%%%s', $query));
|
||||||
}
|
}
|
||||||
$search->orderBy('name', 'ASC')
|
$search->orderBy('name', 'ASC')
|
||||||
->where('active', true);
|
->where('active', true)
|
||||||
|
;
|
||||||
|
|
||||||
return $search->take($limit)->get();
|
return $search->take($limit)->get();
|
||||||
}
|
}
|
||||||
@@ -73,7 +74,8 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
$search->whereLike('name', sprintf('%s%%', $query));
|
$search->whereLike('name', sprintf('%s%%', $query));
|
||||||
}
|
}
|
||||||
$search->orderBy('name', 'ASC')
|
$search->orderBy('name', 'ASC')
|
||||||
->where('active', true);
|
->where('active', true)
|
||||||
|
;
|
||||||
|
|
||||||
return $search->take($limit)->get();
|
return $search->take($limit)->get();
|
||||||
}
|
}
|
||||||
@@ -156,7 +158,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
*/
|
*/
|
||||||
public function getAttachments(Bill $bill): Collection
|
public function getAttachments(Bill $bill): Collection
|
||||||
{
|
{
|
||||||
$set = $bill->attachments()->get();
|
$set = $bill->attachments()->get();
|
||||||
|
|
||||||
/** @var \Storage $disk */
|
/** @var \Storage $disk */
|
||||||
$disk = \Storage::disk('upload');
|
$disk = \Storage::disk('upload');
|
||||||
@@ -175,9 +177,10 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
public function getBills(): Collection
|
public function getBills(): Collection
|
||||||
{
|
{
|
||||||
return $this->user->bills()
|
return $this->user->bills()
|
||||||
->orderBy('order', 'ASC')
|
->orderBy('order', 'ASC')
|
||||||
->orderBy('active', 'DESC')
|
->orderBy('active', 'DESC')
|
||||||
->orderBy('name', 'ASC')->get();
|
->orderBy('name', 'ASC')->get()
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getBillsForAccounts(Collection $accounts): Collection
|
public function getBillsForAccounts(Collection $accounts): Collection
|
||||||
@@ -201,24 +204,25 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
$ids = $accounts->pluck('id')->toArray();
|
$ids = $accounts->pluck('id')->toArray();
|
||||||
|
|
||||||
return $this->user->bills()
|
return $this->user->bills()
|
||||||
->leftJoin(
|
->leftJoin(
|
||||||
'transaction_journals',
|
'transaction_journals',
|
||||||
static function (JoinClause $join): void {
|
static function (JoinClause $join): void {
|
||||||
$join->on('transaction_journals.bill_id', '=', 'bills.id')->whereNull('transaction_journals.deleted_at');
|
$join->on('transaction_journals.bill_id', '=', 'bills.id')->whereNull('transaction_journals.deleted_at');
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
->leftJoin(
|
->leftJoin(
|
||||||
'transactions',
|
'transactions',
|
||||||
static function (JoinClause $join): void {
|
static function (JoinClause $join): void {
|
||||||
$join->on('transaction_journals.id', '=', 'transactions.transaction_journal_id')->where('transactions.amount', '<', 0);
|
$join->on('transaction_journals.id', '=', 'transactions.transaction_journal_id')->where('transactions.amount', '<', 0);
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
->whereIn('transactions.account_id', $ids)
|
->whereIn('transactions.account_id', $ids)
|
||||||
->whereNull('transaction_journals.deleted_at')
|
->whereNull('transaction_journals.deleted_at')
|
||||||
->orderBy('bills.active', 'DESC')
|
->orderBy('bills.active', 'DESC')
|
||||||
->orderBy('bills.name', 'ASC')
|
->orderBy('bills.name', 'ASC')
|
||||||
->groupBy($fields)
|
->groupBy($fields)
|
||||||
->get($fields);
|
->get($fields)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -243,7 +247,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
public function getOverallAverage(Bill $bill): array
|
public function getOverallAverage(Bill $bill): array
|
||||||
{
|
{
|
||||||
/** @var JournalRepositoryInterface $repos */
|
/** @var JournalRepositoryInterface $repos */
|
||||||
$repos = app(JournalRepositoryInterface::class);
|
$repos = app(JournalRepositoryInterface::class);
|
||||||
$repos->setUser($this->user);
|
$repos->setUser($this->user);
|
||||||
|
|
||||||
// get and sort on currency
|
// get and sort on currency
|
||||||
@@ -253,12 +257,12 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
/** @var TransactionJournal $journal */
|
/** @var TransactionJournal $journal */
|
||||||
foreach ($journals as $journal) {
|
foreach ($journals as $journal) {
|
||||||
/** @var Transaction $transaction */
|
/** @var Transaction $transaction */
|
||||||
$transaction = $journal->transactions()->where('amount', '<', 0)->first();
|
$transaction = $journal->transactions()->where('amount', '<', 0)->first();
|
||||||
$currencyId = (int) $journal->transaction_currency_id;
|
$currencyId = (int) $journal->transaction_currency_id;
|
||||||
$currency = $journal->transactionCurrency;
|
$currency = $journal->transactionCurrency;
|
||||||
$result[$currencyId] ??= [
|
$result[$currencyId] ??= [
|
||||||
'sum' => '0',
|
'sum' => '0',
|
||||||
'native_sum' => '0',
|
'native_sum' => '0',
|
||||||
'count' => 0,
|
'count' => 0,
|
||||||
'avg' => '0',
|
'avg' => '0',
|
||||||
'native_avg' => '0',
|
'native_avg' => '0',
|
||||||
@@ -267,7 +271,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
'currency_symbol' => $currency->symbol,
|
'currency_symbol' => $currency->symbol,
|
||||||
'currency_decimal_places' => $currency->decimal_places,
|
'currency_decimal_places' => $currency->decimal_places,
|
||||||
];
|
];
|
||||||
$result[$currencyId]['sum'] = bcadd($result[$currencyId]['sum'], $transaction->amount);
|
$result[$currencyId]['sum'] = bcadd($result[$currencyId]['sum'], $transaction->amount);
|
||||||
$result[$currencyId]['native_sum'] = bcadd($result[$currencyId]['native_sum'], $transaction->native_amount ?? '0');
|
$result[$currencyId]['native_sum'] = bcadd($result[$currencyId]['native_sum'], $transaction->native_amount ?? '0');
|
||||||
if ($journal->foreign_currency_id === Amount::getDefaultCurrency()->id) {
|
if ($journal->foreign_currency_id === Amount::getDefaultCurrency()->id) {
|
||||||
$result[$currencyId]['native_sum'] = bcadd($result[$currencyId]['native_sum'], $transaction->amount);
|
$result[$currencyId]['native_sum'] = bcadd($result[$currencyId]['native_sum'], $transaction->amount);
|
||||||
@@ -281,14 +285,14 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
* @var array $arr
|
* @var array $arr
|
||||||
*/
|
*/
|
||||||
foreach ($result as $currencyId => $arr) {
|
foreach ($result as $currencyId => $arr) {
|
||||||
$result[$currencyId]['avg'] = bcdiv($arr['sum'], (string) $arr['count']);
|
$result[$currencyId]['avg'] = bcdiv($arr['sum'], (string) $arr['count']);
|
||||||
$result[$currencyId]['native_avg'] = bcdiv($arr['native_sum'], (string) $arr['count']);
|
$result[$currencyId]['native_avg'] = bcdiv($arr['native_sum'], (string) $arr['count']);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setUser(null | Authenticatable | User $user): void
|
public function setUser(null|Authenticatable|User $user): void
|
||||||
{
|
{
|
||||||
if ($user instanceof User) {
|
if ($user instanceof User) {
|
||||||
$this->user = $user;
|
$this->user = $user;
|
||||||
@@ -298,8 +302,9 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
public function getPaginator(int $size): LengthAwarePaginator
|
public function getPaginator(int $size): LengthAwarePaginator
|
||||||
{
|
{
|
||||||
return $this->user->bills()
|
return $this->user->bills()
|
||||||
->orderBy('active', 'DESC')
|
->orderBy('active', 'DESC')
|
||||||
->orderBy('name', 'ASC')->paginate($size);
|
->orderBy('name', 'ASC')->paginate($size)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -312,13 +317,14 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
Log::debug(sprintf('Search for linked journals between %s and %s', $start->toW3cString(), $end->toW3cString()));
|
Log::debug(sprintf('Search for linked journals between %s and %s', $start->toW3cString(), $end->toW3cString()));
|
||||||
|
|
||||||
return $bill->transactionJournals()
|
return $bill->transactionJournals()
|
||||||
->before($end)->after($start)->get(
|
->before($end)->after($start)->get(
|
||||||
[
|
[
|
||||||
'transaction_journals.id',
|
'transaction_journals.id',
|
||||||
'transaction_journals.date',
|
'transaction_journals.date',
|
||||||
'transaction_journals.transaction_group_id',
|
'transaction_journals.transaction_group_id',
|
||||||
]
|
]
|
||||||
);
|
)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -327,10 +333,11 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
public function getRulesForBill(Bill $bill): Collection
|
public function getRulesForBill(Bill $bill): Collection
|
||||||
{
|
{
|
||||||
return $this->user->rules()
|
return $this->user->rules()
|
||||||
->leftJoin('rule_actions', 'rule_actions.rule_id', '=', 'rules.id')
|
->leftJoin('rule_actions', 'rule_actions.rule_id', '=', 'rules.id')
|
||||||
->where('rule_actions.action_type', 'link_to_bill')
|
->where('rule_actions.action_type', 'link_to_bill')
|
||||||
->where('rule_actions.action_value', $bill->name)
|
->where('rule_actions.action_value', $bill->name)
|
||||||
->get(['rules.*']);
|
->get(['rules.*'])
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -341,15 +348,16 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
*/
|
*/
|
||||||
public function getRulesForBills(Collection $collection): array
|
public function getRulesForBills(Collection $collection): array
|
||||||
{
|
{
|
||||||
$rules = $this->user->rules()
|
$rules = $this->user->rules()
|
||||||
->leftJoin('rule_actions', 'rule_actions.rule_id', '=', 'rules.id')
|
->leftJoin('rule_actions', 'rule_actions.rule_id', '=', 'rules.id')
|
||||||
->where('rule_actions.action_type', 'link_to_bill')
|
->where('rule_actions.action_type', 'link_to_bill')
|
||||||
->get(['rules.id', 'rules.title', 'rule_actions.action_value', 'rules.active']);
|
->get(['rules.id', 'rules.title', 'rule_actions.action_value', 'rules.active'])
|
||||||
$array = [];
|
;
|
||||||
|
$array = [];
|
||||||
|
|
||||||
/** @var Rule $rule */
|
/** @var Rule $rule */
|
||||||
foreach ($rules as $rule) {
|
foreach ($rules as $rule) {
|
||||||
$array[$rule->action_value] ??= [];
|
$array[$rule->action_value] ??= [];
|
||||||
$array[$rule->action_value][] = ['id' => $rule->id, 'title' => $rule->title, 'active' => $rule->active];
|
$array[$rule->action_value][] = ['id' => $rule->id, 'title' => $rule->title, 'active' => $rule->active];
|
||||||
}
|
}
|
||||||
$return = [];
|
$return = [];
|
||||||
@@ -363,27 +371,28 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
public function getYearAverage(Bill $bill, Carbon $date): array
|
public function getYearAverage(Bill $bill, Carbon $date): array
|
||||||
{
|
{
|
||||||
/** @var JournalRepositoryInterface $repos */
|
/** @var JournalRepositoryInterface $repos */
|
||||||
$repos = app(JournalRepositoryInterface::class);
|
$repos = app(JournalRepositoryInterface::class);
|
||||||
$repos->setUser($this->user);
|
$repos->setUser($this->user);
|
||||||
|
|
||||||
// get and sort on currency
|
// get and sort on currency
|
||||||
$result = [];
|
$result = [];
|
||||||
|
|
||||||
$journals = $bill->transactionJournals()
|
$journals = $bill->transactionJournals()
|
||||||
->where('date', '>=', $date->year . '-01-01 00:00:00')
|
->where('date', '>=', $date->year.'-01-01 00:00:00')
|
||||||
->where('date', '<=', $date->year . '-12-31 23:59:59')
|
->where('date', '<=', $date->year.'-12-31 23:59:59')
|
||||||
->get();
|
->get()
|
||||||
|
;
|
||||||
|
|
||||||
/** @var TransactionJournal $journal */
|
/** @var TransactionJournal $journal */
|
||||||
foreach ($journals as $journal) {
|
foreach ($journals as $journal) {
|
||||||
/** @var null|Transaction $transaction */
|
/** @var null|Transaction $transaction */
|
||||||
$transaction = $journal->transactions()->where('amount', '<', 0)->first();
|
$transaction = $journal->transactions()->where('amount', '<', 0)->first();
|
||||||
if (null === $transaction) {
|
if (null === $transaction) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$currencyId = (int) $journal->transaction_currency_id;
|
$currencyId = (int) $journal->transaction_currency_id;
|
||||||
$currency = $journal->transactionCurrency;
|
$currency = $journal->transactionCurrency;
|
||||||
$result[$currencyId] ??= [
|
$result[$currencyId] ??= [
|
||||||
'sum' => '0',
|
'sum' => '0',
|
||||||
'native_sum' => '0',
|
'native_sum' => '0',
|
||||||
'count' => 0,
|
'count' => 0,
|
||||||
@@ -433,7 +442,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
*/
|
*/
|
||||||
public function nextExpectedMatch(Bill $bill, Carbon $date): Carbon
|
public function nextExpectedMatch(Bill $bill, Carbon $date): Carbon
|
||||||
{
|
{
|
||||||
$cache = new CacheProperties();
|
$cache = new CacheProperties();
|
||||||
$cache->addProperty($bill->id);
|
$cache->addProperty($bill->id);
|
||||||
$cache->addProperty('nextExpectedMatch');
|
$cache->addProperty('nextExpectedMatch');
|
||||||
$cache->addProperty($date);
|
$cache->addProperty($date);
|
||||||
@@ -441,17 +450,17 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
return $cache->get();
|
return $cache->get();
|
||||||
}
|
}
|
||||||
// find the most recent date for this bill NOT in the future. Cache this date:
|
// find the most recent date for this bill NOT in the future. Cache this date:
|
||||||
$start = clone $bill->date;
|
$start = clone $bill->date;
|
||||||
$start->startOfDay();
|
$start->startOfDay();
|
||||||
app('log')->debug('nextExpectedMatch: Start is ' . $start->format('Y-m-d'));
|
app('log')->debug('nextExpectedMatch: Start is '.$start->format('Y-m-d'));
|
||||||
|
|
||||||
while ($start < $date) {
|
while ($start < $date) {
|
||||||
app('log')->debug(sprintf('$start (%s) < $date (%s)', $start->format('Y-m-d H:i:s'), $date->format('Y-m-d H:i:s')));
|
app('log')->debug(sprintf('$start (%s) < $date (%s)', $start->format('Y-m-d H:i:s'), $date->format('Y-m-d H:i:s')));
|
||||||
$start = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
$start = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
||||||
app('log')->debug('Start is now ' . $start->format('Y-m-d H:i:s'));
|
app('log')->debug('Start is now '.$start->format('Y-m-d H:i:s'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$end = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
$end = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
||||||
$end->endOfDay();
|
$end->endOfDay();
|
||||||
|
|
||||||
// see if the bill was paid in this period.
|
// see if the bill was paid in this period.
|
||||||
@@ -463,8 +472,8 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
$start = clone $end;
|
$start = clone $end;
|
||||||
$end = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
$end = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
||||||
}
|
}
|
||||||
app('log')->debug('nextExpectedMatch: Final start is ' . $start->format('Y-m-d'));
|
app('log')->debug('nextExpectedMatch: Final start is '.$start->format('Y-m-d'));
|
||||||
app('log')->debug('nextExpectedMatch: Matching end is ' . $end->format('Y-m-d'));
|
app('log')->debug('nextExpectedMatch: Matching end is '.$end->format('Y-m-d'));
|
||||||
|
|
||||||
$cache->store($start);
|
$cache->store($start);
|
||||||
|
|
||||||
@@ -525,8 +534,8 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
foreach ($bills as $bill) {
|
foreach ($bills as $bill) {
|
||||||
|
|
||||||
/** @var Collection $set */
|
/** @var Collection $set */
|
||||||
$set = $bill->transactionJournals()->after($start)->before($end)->get(['transaction_journals.*']);
|
$set = $bill->transactionJournals()->after($start)->before($end)->get(['transaction_journals.*']);
|
||||||
$currency = $convertToNative && $bill->transactionCurrency->id !== $default->id ? $default : $bill->transactionCurrency;
|
$currency = $convertToNative && $bill->transactionCurrency->id !== $default->id ? $default : $bill->transactionCurrency;
|
||||||
$return[(int) $currency->id] ??= [
|
$return[(int) $currency->id] ??= [
|
||||||
'id' => (string) $currency->id,
|
'id' => (string) $currency->id,
|
||||||
'name' => $currency->name,
|
'name' => $currency->name,
|
||||||
@@ -535,7 +544,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
'decimal_places' => $currency->decimal_places,
|
'decimal_places' => $currency->decimal_places,
|
||||||
'sum' => '0',
|
'sum' => '0',
|
||||||
];
|
];
|
||||||
$setAmount = '0';
|
$setAmount = '0';
|
||||||
|
|
||||||
/** @var TransactionJournal $transactionJournal */
|
/** @var TransactionJournal $transactionJournal */
|
||||||
foreach ($set as $transactionJournal) {
|
foreach ($set as $transactionJournal) {
|
||||||
@@ -552,10 +561,10 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
public function getActiveBills(): Collection
|
public function getActiveBills(): Collection
|
||||||
{
|
{
|
||||||
return $this->user->bills()
|
return $this->user->bills()
|
||||||
->where('active', true)
|
->where('active', true)
|
||||||
->orderBy('bills.name', 'ASC')
|
->orderBy('bills.name', 'ASC')
|
||||||
->get(['bills.*', \DB::raw('((bills.amount_min + bills.amount_max) / 2) AS expectedAmount')]) // @phpstan-ignore-line
|
->get(['bills.*', \DB::raw('((bills.amount_min + bills.amount_max) / 2) AS expectedAmount')]) // @phpstan-ignore-line
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function sumUnpaidInRange(Carbon $start, Carbon $end): array
|
public function sumUnpaidInRange(Carbon $start, Carbon $end): array
|
||||||
@@ -569,9 +578,9 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
/** @var Bill $bill */
|
/** @var Bill $bill */
|
||||||
foreach ($bills as $bill) {
|
foreach ($bills as $bill) {
|
||||||
// app('log')->debug(sprintf('Processing bill #%d ("%s")', $bill->id, $bill->name));
|
// app('log')->debug(sprintf('Processing bill #%d ("%s")', $bill->id, $bill->name));
|
||||||
$dates = $this->getPayDatesInRange($bill, $start, $end);
|
$dates = $this->getPayDatesInRange($bill, $start, $end);
|
||||||
$count = $bill->transactionJournals()->after($start)->before($end)->count();
|
$count = $bill->transactionJournals()->after($start)->before($end)->count();
|
||||||
$total = $dates->count() - $count;
|
$total = $dates->count() - $count;
|
||||||
// app('log')->debug(sprintf('Pay dates: %d, count: %d, left: %d', $dates->count(), $count, $total));
|
// app('log')->debug(sprintf('Pay dates: %d, count: %d, left: %d', $dates->count(), $count, $total));
|
||||||
// app('log')->debug('dates', $dates->toArray());
|
// app('log')->debug('dates', $dates->toArray());
|
||||||
|
|
||||||
@@ -580,10 +589,10 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
// Log::debug(sprintf('min field is %s, max field is %s', $minField, $maxField));
|
// Log::debug(sprintf('min field is %s, max field is %s', $minField, $maxField));
|
||||||
|
|
||||||
if ($total > 0) {
|
if ($total > 0) {
|
||||||
$currency = $convertToNative && $bill->transactionCurrency->id !== $default->id ? $default : $bill->transactionCurrency;
|
$currency = $convertToNative && $bill->transactionCurrency->id !== $default->id ? $default : $bill->transactionCurrency;
|
||||||
$average = bcdiv(bcadd($bill->{$maxField}, $bill->{$minField}), '2');
|
$average = bcdiv(bcadd($bill->{$maxField}, $bill->{$minField}), '2');
|
||||||
Log::debug(sprintf('Amount to pay is %s %s (%d times)', $currency->code, $average, $total));
|
Log::debug(sprintf('Amount to pay is %s %s (%d times)', $currency->code, $average, $total));
|
||||||
$return[$currency->id] ??= [
|
$return[$currency->id] ??= [
|
||||||
'id' => (string) $currency->id,
|
'id' => (string) $currency->id,
|
||||||
'name' => $currency->name,
|
'name' => $currency->name,
|
||||||
'symbol' => $currency->symbol,
|
'symbol' => $currency->symbol,
|
||||||
@@ -621,7 +630,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
|
|
||||||
// app('log')->debug(sprintf('Currentstart (%s) has become %s.', $currentStart->format('Y-m-d'), $nextExpectedMatch->format('Y-m-d')));
|
// app('log')->debug(sprintf('Currentstart (%s) has become %s.', $currentStart->format('Y-m-d'), $nextExpectedMatch->format('Y-m-d')));
|
||||||
|
|
||||||
$currentStart = clone $nextExpectedMatch;
|
$currentStart = clone $nextExpectedMatch;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $set;
|
return $set;
|
||||||
|
18
composer.lock
generated
18
composer.lock
generated
@@ -820,16 +820,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "egulias/email-validator",
|
"name": "egulias/email-validator",
|
||||||
"version": "4.0.2",
|
"version": "4.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/egulias/EmailValidator.git",
|
"url": "https://github.com/egulias/EmailValidator.git",
|
||||||
"reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
|
"reference": "b115554301161fa21467629f1e1391c1936de517"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
|
"url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
|
||||||
"reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
|
"reference": "b115554301161fa21467629f1e1391c1936de517",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -875,7 +875,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/egulias/EmailValidator/issues",
|
"issues": "https://github.com/egulias/EmailValidator/issues",
|
||||||
"source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
|
"source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -883,7 +883,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-10-06T06:47:41+00:00"
|
"time": "2024-12-27T00:36:43+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "facade/ignition-contracts",
|
"name": "facade/ignition-contracts",
|
||||||
@@ -3176,13 +3176,13 @@
|
|||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "4.x-dev"
|
|
||||||
},
|
|
||||||
"laravel": {
|
"laravel": {
|
||||||
"providers": [
|
"providers": [
|
||||||
"Laravel\\Ui\\UiServiceProvider"
|
"Laravel\\Ui\\UiServiceProvider"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "4.x-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
6
package-lock.json
generated
6
package-lock.json
generated
@@ -5790,9 +5790,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/es-module-lexer": {
|
"node_modules/es-module-lexer": {
|
||||||
"version": "1.5.4",
|
"version": "1.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz",
|
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
|
||||||
"integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==",
|
"integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"budgets\"> \u0411\u044e\u0434\u0436\u0435\u0442\u0438 <\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
"no_budget_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"budgets\"> \u0411\u044e\u0434\u0436\u0435\u0442\u0438 <\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
||||||
"no_bill_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0441\u043c\u0435\u0442\u043a\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"bills\"> \u0421\u043c\u0435\u0442\u043a\u0438 <\/a>. \u0421\u043c\u0435\u0442\u043a\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
"source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
||||||
"hidden_fields_preferences": "\u041c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0432\u044a\u0432 \u0432\u0430\u0448\u0438\u0442\u0435 <a href=\"preferences\">\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438<\/a>.",
|
"hidden_fields_preferences": "\u041c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0432\u044a\u0432 \u0432\u0430\u0448\u0438\u0442\u0435 <a href=\"preferences\">\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438<\/a>.",
|
||||||
"destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
"destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "\u0415\u0442\u0438\u043a\u0435\u0442\u0438",
|
"tags": "\u0415\u0442\u0438\u043a\u0435\u0442\u0438",
|
||||||
"no_budget": "(\u0431\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442)",
|
"no_budget": "(\u0431\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442)",
|
||||||
"no_bill": "(\u043d\u044f\u043c\u0430 \u0441\u043c\u0435\u0442\u043a\u0430)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
||||||
"attachments": "\u041f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
|
"attachments": "\u041f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
|
||||||
"notes": "\u0411\u0435\u043b\u0435\u0436\u043a\u0438",
|
"notes": "\u0411\u0435\u043b\u0435\u0436\u043a\u0438",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435.",
|
"destination_account_reconciliation": "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435.",
|
||||||
"source_account_reconciliation": "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435.",
|
"source_account_reconciliation": "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435.",
|
||||||
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"bill": "\u0421\u043c\u0435\u0442\u043a\u0430",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0442\u0435\u0433\u043b\u0435\u043d\u0435.",
|
"you_create_withdrawal": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0442\u0435\u0433\u043b\u0435\u043d\u0435.",
|
||||||
"you_create_transfer": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435.",
|
"you_create_transfer": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435.",
|
||||||
"you_create_deposit": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0434\u0435\u043f\u043e\u0437\u0438\u0442.",
|
"you_create_deposit": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0434\u0435\u043f\u043e\u0437\u0438\u0442.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Aplicar regles",
|
"apply_rules_checkbox": "Aplicar regles",
|
||||||
"fire_webhooks_checkbox": "Disparar webhooks",
|
"fire_webhooks_checkbox": "Disparar webhooks",
|
||||||
"no_budget_pointer": "Sembla que encara no tens cap pressupost. N'hauries de crear alguns a la p\u00e0gina de <a href=\"budgets\">pressuposts<\/a>. Els pressupostos et poden ajudar a fer el seguiment de les teves despeses.",
|
"no_budget_pointer": "Sembla que encara no tens cap pressupost. N'hauries de crear alguns a la p\u00e0gina de <a href=\"budgets\">pressuposts<\/a>. Els pressupostos et poden ajudar a fer el seguiment de les teves despeses.",
|
||||||
"no_bill_pointer": "Sembla que encara no tens cap factura. N'hauries de crear alguna a la p\u00e0gina de <a href=\"bills\">factures<\/a>. Les factures et poden ajudar a fer el seguiment de les teves despeses.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Compte d'origen",
|
"source_account": "Compte d'origen",
|
||||||
"hidden_fields_preferences": "Pots habilitar m\u00e9s opcions de transacci\u00f3 a la <a href=\"preferences\">configuraci\u00f3<\/a>.",
|
"hidden_fields_preferences": "Pots habilitar m\u00e9s opcions de transacci\u00f3 a la <a href=\"preferences\">configuraci\u00f3<\/a>.",
|
||||||
"destination_account": "Compte de dest\u00ed",
|
"destination_account": "Compte de dest\u00ed",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Com aquesta transacci\u00f3 est\u00e0 reconciliada, no podr\u00e0s actualitzar els comptes, ni les quantitats.",
|
"is_reconciled_fields_dropped": "Com aquesta transacci\u00f3 est\u00e0 reconciliada, no podr\u00e0s actualitzar els comptes, ni les quantitats.",
|
||||||
"tags": "Etiquetes",
|
"tags": "Etiquetes",
|
||||||
"no_budget": "(cap pressupost)",
|
"no_budget": "(cap pressupost)",
|
||||||
"no_bill": "(cap factura)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Adjunts",
|
"attachments": "Adjunts",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "No pots editar el compte de dest\u00ed d'una transacci\u00f3 de reconciliaci\u00f3.",
|
"destination_account_reconciliation": "No pots editar el compte de dest\u00ed d'una transacci\u00f3 de reconciliaci\u00f3.",
|
||||||
"source_account_reconciliation": "No pots editar el compte d'origen d'una transacci\u00f3 de consolidaci\u00f3.",
|
"source_account_reconciliation": "No pots editar el compte d'origen d'una transacci\u00f3 de consolidaci\u00f3.",
|
||||||
"budget": "Pressupost",
|
"budget": "Pressupost",
|
||||||
"bill": "Factura",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Est\u00e0s creant una retirada.",
|
"you_create_withdrawal": "Est\u00e0s creant una retirada.",
|
||||||
"you_create_transfer": "Est\u00e0s creant una transfer\u00e8ncia.",
|
"you_create_transfer": "Est\u00e0s creant una transfer\u00e8ncia.",
|
||||||
"you_create_deposit": "Est\u00e0s creant un ingr\u00e9s.",
|
"you_create_deposit": "Est\u00e0s creant un ingr\u00e9s.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Zd\u00e1 se, \u017ee je\u0161t\u011b nem\u00e1te \u017e\u00e1dn\u00e9 rozpo\u010dty. M\u011bli byste n\u011bkter\u00e9 vytvo\u0159it na <a href=\"budgets\">rozpo\u010dty<\/a>-. Rozpo\u010dty v\u00e1m mohou pomoci sledovat v\u00fddaje.",
|
"no_budget_pointer": "Zd\u00e1 se, \u017ee je\u0161t\u011b nem\u00e1te \u017e\u00e1dn\u00e9 rozpo\u010dty. M\u011bli byste n\u011bkter\u00e9 vytvo\u0159it na <a href=\"budgets\">rozpo\u010dty<\/a>-. Rozpo\u010dty v\u00e1m mohou pomoci sledovat v\u00fddaje.",
|
||||||
"no_bill_pointer": "Zd\u00e1 se, \u017ee je\u0161t\u011b nem\u00e1te \u017e\u00e1dn\u00e9 \u00fa\u010dty. M\u011bli byste n\u011bkter\u00e9 vytvo\u0159it na <a href=\"bills\">\u00fa\u010dtech<\/a>. \u00da\u010dty v\u00e1m mohou pomoci sledovat v\u00fddaje.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Zdrojov\u00fd \u00fa\u010det",
|
"source_account": "Zdrojov\u00fd \u00fa\u010det",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "C\u00edlov\u00fd \u00fa\u010det",
|
"destination_account": "C\u00edlov\u00fd \u00fa\u010det",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "\u0160t\u00edtky",
|
"tags": "\u0160t\u00edtky",
|
||||||
"no_budget": "(\u017e\u00e1dn\u00fd rozpo\u010det)",
|
"no_budget": "(\u017e\u00e1dn\u00fd rozpo\u010det)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategorie",
|
"category": "Kategorie",
|
||||||
"attachments": "P\u0159\u00edlohy",
|
"attachments": "P\u0159\u00edlohy",
|
||||||
"notes": "Pozn\u00e1mky",
|
"notes": "Pozn\u00e1mky",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "C\u00edlov\u00fd \u00fa\u010det odsouhlasen\u00e9 transakce nelze upravit.",
|
"destination_account_reconciliation": "C\u00edlov\u00fd \u00fa\u010det odsouhlasen\u00e9 transakce nelze upravit.",
|
||||||
"source_account_reconciliation": "Nem\u016f\u017eete upravovat zdrojov\u00fd \u00fa\u010det srovn\u00e1vac\u00ed transakce.",
|
"source_account_reconciliation": "Nem\u016f\u017eete upravovat zdrojov\u00fd \u00fa\u010det srovn\u00e1vac\u00ed transakce.",
|
||||||
"budget": "Rozpo\u010det",
|
"budget": "Rozpo\u010det",
|
||||||
"bill": "\u00da\u010det",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Det ser ud til, at du ikke har oprettet budgetter endnu. Du burde oprette nogle p\u00e5 <a href=\"\/budgets\">budgetsiden<\/a>. Budgetter kan hj\u00e6lpe dig med at holde styr p\u00e5 udgifter.",
|
"no_budget_pointer": "Det ser ud til, at du ikke har oprettet budgetter endnu. Du burde oprette nogle p\u00e5 <a href=\"\/budgets\">budgetsiden<\/a>. Budgetter kan hj\u00e6lpe dig med at holde styr p\u00e5 udgifter.",
|
||||||
"no_bill_pointer": "Du synes ikke at have nogen regninger endnu. Du b\u00f8r oprette nogle p\u00e5 <a href=\"bills\">regninger<\/a>-siden. Regninger kan hj\u00e6lpe dig med at holde styr p\u00e5 udgifterne.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Kildekonto",
|
"source_account": "Kildekonto",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "Destinationskonto",
|
"destination_account": "Destinationskonto",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Etiketter",
|
"tags": "Etiketter",
|
||||||
"no_budget": "(no budget)",
|
"no_budget": "(no budget)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Vedh\u00e6ftninger",
|
"attachments": "Vedh\u00e6ftninger",
|
||||||
"notes": "Noter",
|
"notes": "Noter",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Du kan ikke redigere destinationskontoen p\u00e5 en afstemningstransaktion.",
|
"destination_account_reconciliation": "Du kan ikke redigere destinationskontoen p\u00e5 en afstemningstransaktion.",
|
||||||
"source_account_reconciliation": "Du kan ikke redigere kildekontoen p\u00e5 en afstemningstransaktion.",
|
"source_account_reconciliation": "Du kan ikke redigere kildekontoen p\u00e5 en afstemningstransaktion.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Regning",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Regeln anwenden",
|
"apply_rules_checkbox": "Regeln anwenden",
|
||||||
"fire_webhooks_checkbox": "Webhooks abfeuern",
|
"fire_webhooks_checkbox": "Webhooks abfeuern",
|
||||||
"no_budget_pointer": "Sie scheinen noch keine Budgets festgelegt zu haben. Sie sollten einige davon auf der Seite <a href=\"budgets\">Budgets<\/a> anlegen. Budgets k\u00f6nnen Ihnen dabei helfen, den \u00dcberblick \u00fcber die Ausgaben zu behalten.",
|
"no_budget_pointer": "Sie scheinen noch keine Budgets festgelegt zu haben. Sie sollten einige davon auf der Seite <a href=\"budgets\">Budgets<\/a> anlegen. Budgets k\u00f6nnen Ihnen dabei helfen, den \u00dcberblick \u00fcber die Ausgaben zu behalten.",
|
||||||
"no_bill_pointer": "Sie scheinen noch keine Rechnungen zu haben. Sie sollten einige auf der Seite <a href=\"bills\">Rechnungen<\/a> erstellen. Anhand der Rechnungen k\u00f6nnen Sie den \u00dcberblick \u00fcber Ihre Ausgaben behalten.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Quellkonto",
|
"source_account": "Quellkonto",
|
||||||
"hidden_fields_preferences": "Sie k\u00f6nnen weitere Buchungsoptionen in Ihren <a href=\"preferences\">Einstellungen<\/a> aktivieren.",
|
"hidden_fields_preferences": "Sie k\u00f6nnen weitere Buchungsoptionen in Ihren <a href=\"preferences\">Einstellungen<\/a> aktivieren.",
|
||||||
"destination_account": "Zielkonto",
|
"destination_account": "Zielkonto",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Da diese Buchung abgeglichen ist, k\u00f6nnen Sie weder die Konten noch den\/die Betrag\/Betr\u00e4ge aktualisieren.",
|
"is_reconciled_fields_dropped": "Da diese Buchung abgeglichen ist, k\u00f6nnen Sie weder die Konten noch den\/die Betrag\/Betr\u00e4ge aktualisieren.",
|
||||||
"tags": "Schlagw\u00f6rter",
|
"tags": "Schlagw\u00f6rter",
|
||||||
"no_budget": "(kein Budget)",
|
"no_budget": "(kein Budget)",
|
||||||
"no_bill": "(keine Belege)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategorie",
|
"category": "Kategorie",
|
||||||
"attachments": "Anh\u00e4nge",
|
"attachments": "Anh\u00e4nge",
|
||||||
"notes": "Notizen",
|
"notes": "Notizen",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Sie k\u00f6nnen das Zielkonto einer Kontenausgleichsbuchung nicht bearbeiten.",
|
"destination_account_reconciliation": "Sie k\u00f6nnen das Zielkonto einer Kontenausgleichsbuchung nicht bearbeiten.",
|
||||||
"source_account_reconciliation": "Sie k\u00f6nnen das Quellkonto einer Kontenausgleichsbuchung nicht bearbeiten.",
|
"source_account_reconciliation": "Sie k\u00f6nnen das Quellkonto einer Kontenausgleichsbuchung nicht bearbeiten.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Rechnung",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Sie haben eine Ausgabe erstellt.",
|
"you_create_withdrawal": "Sie haben eine Ausgabe erstellt.",
|
||||||
"you_create_transfer": "Sie erstellen eine Umbuchung.",
|
"you_create_transfer": "Sie erstellen eine Umbuchung.",
|
||||||
"you_create_deposit": "Sie haben eine Einnahme erstellt.",
|
"you_create_deposit": "Sie haben eine Einnahme erstellt.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03c9\u03bd webhook",
|
"fire_webhooks_checkbox": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03c9\u03bd webhook",
|
||||||
"no_budget_pointer": "\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b7. \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03c3\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 <a href=\"budgets\">\u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd<\/a>. \u039f\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2 \u03b2\u03bf\u03b7\u03b8\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 \u03c3\u03b1\u03c2.",
|
"no_budget_pointer": "\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b7. \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03c3\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 <a href=\"budgets\">\u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd<\/a>. \u039f\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2 \u03b2\u03bf\u03b7\u03b8\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 \u03c3\u03b1\u03c2.",
|
||||||
"no_bill_pointer": "\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1 \u03b1\u03ba\u03cc\u03bc\u03b7. \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c3\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 <a href=\"bills\">\u03c0\u03ac\u03b3\u03b9\u03c9\u03bd \u03b5\u03be\u03cc\u03b4\u03c9\u03bd<\/a>. \u03a4\u03b1 \u03c0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1 \u03c3\u03b1\u03c2 \u03b2\u03bf\u03b7\u03b8\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 \u03c3\u03b1\u03c2.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2",
|
"source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2",
|
||||||
"hidden_fields_preferences": "\u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03b9\u03c2 <a href=\"\/preferences\">\u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2<\/a>.",
|
"hidden_fields_preferences": "\u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03b9\u03c2 <a href=\"\/preferences\">\u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2<\/a>.",
|
||||||
"destination_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd",
|
"destination_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
|
"tags": "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
|
||||||
"no_budget": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc)",
|
"no_budget": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc)",
|
||||||
"no_bill": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
|
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
|
||||||
"attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
|
"attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
|
||||||
"notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
|
"notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.",
|
"destination_account_reconciliation": "\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.",
|
||||||
"source_account_reconciliation": "\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.",
|
"source_account_reconciliation": "\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.",
|
||||||
"budget": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
|
"budget": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||||
"bill": "\u03a0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7.",
|
"you_create_withdrawal": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7.",
|
||||||
"you_create_transfer": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac.",
|
"you_create_transfer": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac.",
|
||||||
"you_create_deposit": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7.",
|
"you_create_deposit": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||||
"no_bill_pointer": "You seem to have no bills yet. You should create some on the <a href=\"bills\">bills<\/a>-page. Bills can help you keep track of expenses.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Source account",
|
"source_account": "Source account",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "Destination account",
|
"destination_account": "Destination account",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"no_budget": "(no budget)",
|
"no_budget": "(no budget)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Category",
|
"category": "Category",
|
||||||
"attachments": "Attachments",
|
"attachments": "Attachments",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
||||||
"source_account_reconciliation": "You can't edit the source account of a reconciliation transaction.",
|
"source_account_reconciliation": "You can't edit the source account of a reconciliation transaction.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Bill",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||||
"no_bill_pointer": "You seem to have no bills yet. You should create some on the <a href=\"bills\">bills<\/a>-page. Bills can help you keep track of expenses.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Source account",
|
"source_account": "Source account",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "Destination account",
|
"destination_account": "Destination account",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"no_budget": "(no budget)",
|
"no_budget": "(no budget)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Category",
|
"category": "Category",
|
||||||
"attachments": "Attachments",
|
"attachments": "Attachments",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
||||||
"source_account_reconciliation": "You can't edit the source account of a reconciliation transaction.",
|
"source_account_reconciliation": "You can't edit the source account of a reconciliation transaction.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Bill",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Aplicar reglas",
|
"apply_rules_checkbox": "Aplicar reglas",
|
||||||
"fire_webhooks_checkbox": "Disparar webhooks",
|
"fire_webhooks_checkbox": "Disparar webhooks",
|
||||||
"no_budget_pointer": "Parece que a\u00fan no tienes presupuestos. Debes crear algunos en la p\u00e1gina <a href=\"budgets\">presupuestos<\/a>. Los presupuestos pueden ayudarle a realizar un seguimiento de los gastos.",
|
"no_budget_pointer": "Parece que a\u00fan no tienes presupuestos. Debes crear algunos en la p\u00e1gina <a href=\"budgets\">presupuestos<\/a>. Los presupuestos pueden ayudarle a realizar un seguimiento de los gastos.",
|
||||||
"no_bill_pointer": "Parece que a\u00fan no tienes facturas. Deber\u00edas crear algunas en la p\u00e1gina de <a href=\"bills\">facturas<\/a>. Las facturas pueden ayudarte a llevar un seguimiento de los gastos.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Cuenta origen",
|
"source_account": "Cuenta origen",
|
||||||
"hidden_fields_preferences": "Puede habilitar m\u00e1s opciones de transacci\u00f3n en sus <a href=\"preferences\">ajustes <\/a>.",
|
"hidden_fields_preferences": "Puede habilitar m\u00e1s opciones de transacci\u00f3n en sus <a href=\"preferences\">ajustes <\/a>.",
|
||||||
"destination_account": "Cuenta destino",
|
"destination_account": "Cuenta destino",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Debido a que esta transacci\u00f3n est\u00e1 reconciliada, no podr\u00e1 actualizar las cuentas, ni las cantidades.",
|
"is_reconciled_fields_dropped": "Debido a que esta transacci\u00f3n est\u00e1 reconciliada, no podr\u00e1 actualizar las cuentas, ni las cantidades.",
|
||||||
"tags": "Etiquetas",
|
"tags": "Etiquetas",
|
||||||
"no_budget": "(sin presupuesto)",
|
"no_budget": "(sin presupuesto)",
|
||||||
"no_bill": "(sin factura)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Archivos adjuntos",
|
"attachments": "Archivos adjuntos",
|
||||||
"notes": "Notas",
|
"notes": "Notas",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "No puedes editar la cuenta de destino de una transacci\u00f3n de reconciliaci\u00f3n.",
|
"destination_account_reconciliation": "No puedes editar la cuenta de destino de una transacci\u00f3n de reconciliaci\u00f3n.",
|
||||||
"source_account_reconciliation": "No puedes editar la cuenta de origen de una transacci\u00f3n de reconciliaci\u00f3n.",
|
"source_account_reconciliation": "No puedes editar la cuenta de origen de una transacci\u00f3n de reconciliaci\u00f3n.",
|
||||||
"budget": "Presupuesto",
|
"budget": "Presupuesto",
|
||||||
"bill": "Factura",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Est\u00e1 creando un gasto.",
|
"you_create_withdrawal": "Est\u00e1 creando un gasto.",
|
||||||
"you_create_transfer": "Est\u00e1 creando una transferencia.",
|
"you_create_transfer": "Est\u00e1 creando una transferencia.",
|
||||||
"you_create_deposit": "Est\u00e1 creando un ingreso.",
|
"you_create_deposit": "Est\u00e1 creando un ingreso.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 budjetteja. Sinun pit\u00e4isi luoda joitakin <a href=\"budgets\">budjetit<\/a>-sivulla. Budjetit auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
"no_budget_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 budjetteja. Sinun pit\u00e4isi luoda joitakin <a href=\"budgets\">budjetit<\/a>-sivulla. Budjetit auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
||||||
"no_bill_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 laskuja. Sinun pit\u00e4isi luoda joitakin <a href=\"bills\">laskut<\/a>-sivulla. Laskut auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "L\u00e4hdetili",
|
"source_account": "L\u00e4hdetili",
|
||||||
"hidden_fields_preferences": "Voit ottaa k\u00e4ytt\u00f6\u00f6n lis\u00e4\u00e4 tapahtumavalintoja <a href=\"preferences\">asetuksissa<\/a>.",
|
"hidden_fields_preferences": "Voit ottaa k\u00e4ytt\u00f6\u00f6n lis\u00e4\u00e4 tapahtumavalintoja <a href=\"preferences\">asetuksissa<\/a>.",
|
||||||
"destination_account": "Kohdetili",
|
"destination_account": "Kohdetili",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "T\u00e4git",
|
"tags": "T\u00e4git",
|
||||||
"no_budget": "(ei budjettia)",
|
"no_budget": "(ei budjettia)",
|
||||||
"no_bill": "(ei laskua)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategoria",
|
"category": "Kategoria",
|
||||||
"attachments": "Liitteet",
|
"attachments": "Liitteet",
|
||||||
"notes": "Muistiinpanot",
|
"notes": "Muistiinpanot",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Et voi muokata t\u00e4sm\u00e4ytystapahtuman kohdetili\u00e4.",
|
"destination_account_reconciliation": "Et voi muokata t\u00e4sm\u00e4ytystapahtuman kohdetili\u00e4.",
|
||||||
"source_account_reconciliation": "Et voi muokata t\u00e4sm\u00e4ytystapahtuman l\u00e4hdetili\u00e4.",
|
"source_account_reconciliation": "Et voi muokata t\u00e4sm\u00e4ytystapahtuman l\u00e4hdetili\u00e4.",
|
||||||
"budget": "Budjetti",
|
"budget": "Budjetti",
|
||||||
"bill": "Lasku",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Olet luomassa nostoa.",
|
"you_create_withdrawal": "Olet luomassa nostoa.",
|
||||||
"you_create_transfer": "Olet luomassa siirtoa.",
|
"you_create_transfer": "Olet luomassa siirtoa.",
|
||||||
"you_create_deposit": "Olet luomassa talletusta.",
|
"you_create_deposit": "Olet luomassa talletusta.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Appliquer les r\u00e8gles",
|
"apply_rules_checkbox": "Appliquer les r\u00e8gles",
|
||||||
"fire_webhooks_checkbox": "Lancer les webhooks",
|
"fire_webhooks_checkbox": "Lancer les webhooks",
|
||||||
"no_budget_pointer": "Vous semblez n\u2019avoir encore aucun budget. Vous devriez en cr\u00e9er un sur la page des <a href=\"budgets\">budgets<\/a>. Les budgets peuvent vous aider \u00e0 garder une trace des d\u00e9penses.",
|
"no_budget_pointer": "Vous semblez n\u2019avoir encore aucun budget. Vous devriez en cr\u00e9er un sur la page des <a href=\"budgets\">budgets<\/a>. Les budgets peuvent vous aider \u00e0 garder une trace des d\u00e9penses.",
|
||||||
"no_bill_pointer": "Vous semblez n'avoir encore aucune facture. Vous devriez en cr\u00e9er une sur la page <a href=\"bills\">factures<\/a>-. Les factures peuvent vous aider \u00e0 garder une trace des d\u00e9penses.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Compte source",
|
"source_account": "Compte source",
|
||||||
"hidden_fields_preferences": "Vous pouvez activer plus d'options d'op\u00e9rations dans vos <a href=\"preferences\">param\u00e8tres<\/a>.",
|
"hidden_fields_preferences": "Vous pouvez activer plus d'options d'op\u00e9rations dans vos <a href=\"preferences\">param\u00e8tres<\/a>.",
|
||||||
"destination_account": "Compte de destination",
|
"destination_account": "Compte de destination",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Comme cette op\u00e9ration est rapproch\u00e9e, vous ne pourrez pas modifier les comptes, ni le(s) montant(s).",
|
"is_reconciled_fields_dropped": "Comme cette op\u00e9ration est rapproch\u00e9e, vous ne pourrez pas modifier les comptes, ni le(s) montant(s).",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"no_budget": "(pas de budget)",
|
"no_budget": "(pas de budget)",
|
||||||
"no_bill": "(aucune facture)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Cat\u00e9gorie",
|
"category": "Cat\u00e9gorie",
|
||||||
"attachments": "Pi\u00e8ces jointes",
|
"attachments": "Pi\u00e8ces jointes",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Vous ne pouvez pas modifier le compte de destination d'une op\u00e9ration de rapprochement.",
|
"destination_account_reconciliation": "Vous ne pouvez pas modifier le compte de destination d'une op\u00e9ration de rapprochement.",
|
||||||
"source_account_reconciliation": "Vous ne pouvez pas modifier le compte source d'une op\u00e9ration de rapprochement.",
|
"source_account_reconciliation": "Vous ne pouvez pas modifier le compte source d'une op\u00e9ration de rapprochement.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Facture",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Vous saisissez une d\u00e9pense.",
|
"you_create_withdrawal": "Vous saisissez une d\u00e9pense.",
|
||||||
"you_create_transfer": "Vous saisissez un transfert.",
|
"you_create_transfer": "Vous saisissez un transfert.",
|
||||||
"you_create_deposit": "Vous saisissez un d\u00e9p\u00f4t.",
|
"you_create_deposit": "Vous saisissez un d\u00e9p\u00f4t.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "\u00dagy t\u0171nik, m\u00e9g nincsenek k\u00f6lts\u00e9gkeretek. K\u00f6lts\u00e9gkereteket a <a href=\"budgets\">k\u00f6lts\u00e9gkeretek<\/a> oldalon lehet l\u00e9trehozni. A k\u00f6lts\u00e9gkeretek seg\u00edtenek nyomon k\u00f6vetni a k\u00f6lts\u00e9geket.",
|
"no_budget_pointer": "\u00dagy t\u0171nik, m\u00e9g nincsenek k\u00f6lts\u00e9gkeretek. K\u00f6lts\u00e9gkereteket a <a href=\"budgets\">k\u00f6lts\u00e9gkeretek<\/a> oldalon lehet l\u00e9trehozni. A k\u00f6lts\u00e9gkeretek seg\u00edtenek nyomon k\u00f6vetni a k\u00f6lts\u00e9geket.",
|
||||||
"no_bill_pointer": "\u00dagy t\u0171nik, m\u00e9g nincsenek k\u00f6lts\u00e9gkeretek. K\u00f6lts\u00e9gkereteket a <a href=\"bills\">k\u00f6lts\u00e9gkeretek<\/a> oldalon lehet l\u00e9trehozni. A k\u00f6lts\u00e9gkeretek seg\u00edtenek nyomon k\u00f6vetni a k\u00f6lts\u00e9geket.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Forr\u00e1s sz\u00e1mla",
|
"source_account": "Forr\u00e1s sz\u00e1mla",
|
||||||
"hidden_fields_preferences": "A <a href=\"preferences\">be\u00e1ll\u00edt\u00e1sokban<\/a> t\u00f6bb mez\u0151 is enged\u00e9lyezhet\u0151.",
|
"hidden_fields_preferences": "A <a href=\"preferences\">be\u00e1ll\u00edt\u00e1sokban<\/a> t\u00f6bb mez\u0151 is enged\u00e9lyezhet\u0151.",
|
||||||
"destination_account": "C\u00e9lsz\u00e1mla",
|
"destination_account": "C\u00e9lsz\u00e1mla",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "C\u00edmk\u00e9k",
|
"tags": "C\u00edmk\u00e9k",
|
||||||
"no_budget": "(nincs k\u00f6lts\u00e9gkeret)",
|
"no_budget": "(nincs k\u00f6lts\u00e9gkeret)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kateg\u00f3ria",
|
"category": "Kateg\u00f3ria",
|
||||||
"attachments": "Mell\u00e9kletek",
|
"attachments": "Mell\u00e9kletek",
|
||||||
"notes": "Megjegyz\u00e9sek",
|
"notes": "Megjegyz\u00e9sek",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Nem lehet szerkeszteni egy egyeztetett tranzakci\u00f3 c\u00e9lsz\u00e1ml\u00e1j\u00e1t.",
|
"destination_account_reconciliation": "Nem lehet szerkeszteni egy egyeztetett tranzakci\u00f3 c\u00e9lsz\u00e1ml\u00e1j\u00e1t.",
|
||||||
"source_account_reconciliation": "Nem lehet szerkeszteni egy egyeztetett tranzakci\u00f3 forr\u00e1ssz\u00e1ml\u00e1j\u00e1t.",
|
"source_account_reconciliation": "Nem lehet szerkeszteni egy egyeztetett tranzakci\u00f3 forr\u00e1ssz\u00e1ml\u00e1j\u00e1t.",
|
||||||
"budget": "K\u00f6lts\u00e9gkeret",
|
"budget": "K\u00f6lts\u00e9gkeret",
|
||||||
"bill": "Sz\u00e1mla",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Egy k\u00f6lts\u00e9g l\u00e9trehoz\u00e1sa.",
|
"you_create_withdrawal": "Egy k\u00f6lts\u00e9g l\u00e9trehoz\u00e1sa.",
|
||||||
"you_create_transfer": "Egy \u00e1tutal\u00e1s l\u00e9trehoz\u00e1sa.",
|
"you_create_transfer": "Egy \u00e1tutal\u00e1s l\u00e9trehoz\u00e1sa.",
|
||||||
"you_create_deposit": "Egy bev\u00e9tel l\u00e9trehoz\u00e1sa.",
|
"you_create_deposit": "Egy bev\u00e9tel l\u00e9trehoz\u00e1sa.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Anda tampaknya belum memiliki anggaran. Anda harus membuat beberapa di halaman-<a href=\"budgets\">anggaran<\/a>. Anggaran dapat membantu anda melacak pengeluaran.",
|
"no_budget_pointer": "Anda tampaknya belum memiliki anggaran. Anda harus membuat beberapa di halaman-<a href=\"budgets\">anggaran<\/a>. Anggaran dapat membantu anda melacak pengeluaran.",
|
||||||
"no_bill_pointer": "Anda tampaknya belum memiliki tagihan. Anda harus membuat beberapa di halaman-<a href=\"bills\">tagihan<\/a>. Tagihan dapat membantu anda melacak pengeluaran.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Akun sumber",
|
"source_account": "Akun sumber",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "Akun tujuan",
|
"destination_account": "Akun tujuan",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Tag",
|
"tags": "Tag",
|
||||||
"no_budget": "(no budget)",
|
"no_budget": "(no budget)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Lampiran",
|
"attachments": "Lampiran",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
||||||
"source_account_reconciliation": "Anda tidak dapat mengedit akun sumber dari transaksi rekonsiliasi.",
|
"source_account_reconciliation": "Anda tidak dapat mengedit akun sumber dari transaksi rekonsiliasi.",
|
||||||
"budget": "Anggaran",
|
"budget": "Anggaran",
|
||||||
"bill": "Tagihan",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Applica le regole",
|
"apply_rules_checkbox": "Applica le regole",
|
||||||
"fire_webhooks_checkbox": "Esegui webhook",
|
"fire_webhooks_checkbox": "Esegui webhook",
|
||||||
"no_budget_pointer": "Sembra che tu non abbia ancora dei budget. Dovresti crearne alcuni nella pagina dei <a href=\"budgets\">budget<\/a>. I budget possono aiutarti a tenere traccia delle spese.",
|
"no_budget_pointer": "Sembra che tu non abbia ancora dei budget. Dovresti crearne alcuni nella pagina dei <a href=\"budgets\">budget<\/a>. I budget possono aiutarti a tenere traccia delle spese.",
|
||||||
"no_bill_pointer": "Sembra che tu non abbia ancora delle bollette. Dovresti crearne alcune nella pagina delle <a href=\"bills\">bollette<\/a>. Le bollette possono aiutarti a tenere traccia delle spese.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Conto di origine",
|
"source_account": "Conto di origine",
|
||||||
"hidden_fields_preferences": "Puoi abilitare maggiori opzioni per le transazioni nelle tue <a href=\"preferences\">impostazioni<\/a>.",
|
"hidden_fields_preferences": "Puoi abilitare maggiori opzioni per le transazioni nelle tue <a href=\"preferences\">impostazioni<\/a>.",
|
||||||
"destination_account": "Conto destinazione",
|
"destination_account": "Conto destinazione",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Poich\u00e9 questa transazione \u00e8 riconciliata, non potrai aggiornare i conti, n\u00e9 gli importi.",
|
"is_reconciled_fields_dropped": "Poich\u00e9 questa transazione \u00e8 riconciliata, non potrai aggiornare i conti, n\u00e9 gli importi.",
|
||||||
"tags": "Etichette",
|
"tags": "Etichette",
|
||||||
"no_budget": "(nessun budget)",
|
"no_budget": "(nessun budget)",
|
||||||
"no_bill": "(nessuna bolletta)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Allegati",
|
"attachments": "Allegati",
|
||||||
"notes": "Note",
|
"notes": "Note",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Non \u00e8 possibile modificare il conto di destinazione di una transazione di riconciliazione.",
|
"destination_account_reconciliation": "Non \u00e8 possibile modificare il conto di destinazione di una transazione di riconciliazione.",
|
||||||
"source_account_reconciliation": "Non puoi modificare il conto di origine di una transazione di riconciliazione.",
|
"source_account_reconciliation": "Non puoi modificare il conto di origine di una transazione di riconciliazione.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Bolletta",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Stai creando un prelievo.",
|
"you_create_withdrawal": "Stai creando un prelievo.",
|
||||||
"you_create_transfer": "Stai creando un trasferimento.",
|
"you_create_transfer": "Stai creando un trasferimento.",
|
||||||
"you_create_deposit": "Stai creando un deposito.",
|
"you_create_deposit": "Stai creando un deposito.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "\u30eb\u30fc\u30eb\u3092\u9069\u7528",
|
"apply_rules_checkbox": "\u30eb\u30fc\u30eb\u3092\u9069\u7528",
|
||||||
"fire_webhooks_checkbox": "Webhook\u3092\u5b9f\u884c",
|
"fire_webhooks_checkbox": "Webhook\u3092\u5b9f\u884c",
|
||||||
"no_budget_pointer": "\u307e\u3060\u4e88\u7b97\u3092\u7acb\u3066\u3066\u3044\u306a\u3044\u3088\u3046\u3067\u3059\u3002<a href=\"\/budgets\">\u4e88\u7b97<\/a>\u30da\u30fc\u30b8\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u4e88\u7b97\u306f\u652f\u51fa\u306e\u628a\u63e1\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002",
|
"no_budget_pointer": "\u307e\u3060\u4e88\u7b97\u3092\u7acb\u3066\u3066\u3044\u306a\u3044\u3088\u3046\u3067\u3059\u3002<a href=\"\/budgets\">\u4e88\u7b97<\/a>\u30da\u30fc\u30b8\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u4e88\u7b97\u306f\u652f\u51fa\u306e\u628a\u63e1\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002",
|
||||||
"no_bill_pointer": "\u307e\u3060\u8acb\u6c42\u304c\u306a\u3044\u3088\u3046\u3067\u3059\u3002<a href=\"\/budgets\">\u8acb\u6c42<\/a>\u30da\u30fc\u30b8\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8acb\u6c42\u306f\u652f\u51fa\u306e\u628a\u63e1\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u5f15\u304d\u51fa\u3057\u53e3\u5ea7",
|
"source_account": "\u5f15\u304d\u51fa\u3057\u53e3\u5ea7",
|
||||||
"hidden_fields_preferences": "<a href=\"preferences\">\u8a2d\u5b9a<\/a> \u3067\u8ffd\u52a0\u306e\u53d6\u5f15\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3067\u304d\u307e\u3059\u3002",
|
"hidden_fields_preferences": "<a href=\"preferences\">\u8a2d\u5b9a<\/a> \u3067\u8ffd\u52a0\u306e\u53d6\u5f15\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3067\u304d\u307e\u3059\u3002",
|
||||||
"destination_account": "\u9810\u3051\u5165\u308c\u53e3\u5ea7",
|
"destination_account": "\u9810\u3051\u5165\u308c\u53e3\u5ea7",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "\u3053\u306e\u53d6\u5f15\u306f\u7167\u5408\u6e08\u307f\u306e\u305f\u3081\u3001\u53e3\u5ea7\u3084\u91d1\u984d\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
|
"is_reconciled_fields_dropped": "\u3053\u306e\u53d6\u5f15\u306f\u7167\u5408\u6e08\u307f\u306e\u305f\u3081\u3001\u53e3\u5ea7\u3084\u91d1\u984d\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
|
||||||
"tags": "\u30bf\u30b0",
|
"tags": "\u30bf\u30b0",
|
||||||
"no_budget": "(\u4e88\u7b97\u306a\u3057)",
|
"no_budget": "(\u4e88\u7b97\u306a\u3057)",
|
||||||
"no_bill": "(\u8acb\u6c42\u306a\u3057)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u30ab\u30c6\u30b4\u30ea",
|
"category": "\u30ab\u30c6\u30b4\u30ea",
|
||||||
"attachments": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb",
|
"attachments": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb",
|
||||||
"notes": "\u5099\u8003",
|
"notes": "\u5099\u8003",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\u9810\u3051\u5165\u308c\u53e3\u5ea7\u306e\u53d6\u5f15\u7167\u5408\u3092\u7de8\u96c6\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
|
"destination_account_reconciliation": "\u9810\u3051\u5165\u308c\u53e3\u5ea7\u306e\u53d6\u5f15\u7167\u5408\u3092\u7de8\u96c6\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
|
||||||
"source_account_reconciliation": "\u5f15\u304d\u51fa\u3057\u53e3\u5ea7\u306e\u53d6\u5f15\u7167\u5408\u3092\u7de8\u96c6\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
|
"source_account_reconciliation": "\u5f15\u304d\u51fa\u3057\u53e3\u5ea7\u306e\u53d6\u5f15\u7167\u5408\u3092\u7de8\u96c6\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
|
||||||
"budget": "\u4e88\u7b97",
|
"budget": "\u4e88\u7b97",
|
||||||
"bill": "\u8acb\u6c42",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\u51fa\u91d1\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002",
|
"you_create_withdrawal": "\u51fa\u91d1\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002",
|
||||||
"you_create_transfer": "\u9001\u91d1\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002",
|
"you_create_transfer": "\u9001\u91d1\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002",
|
||||||
"you_create_deposit": "\u5165\u91d1\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002",
|
"you_create_deposit": "\u5165\u91d1\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "\uaddc\uce59 \uc801\uc6a9",
|
"apply_rules_checkbox": "\uaddc\uce59 \uc801\uc6a9",
|
||||||
"fire_webhooks_checkbox": "\uc6f9\ud6c5 \uc2e4\ud589",
|
"fire_webhooks_checkbox": "\uc6f9\ud6c5 \uc2e4\ud589",
|
||||||
"no_budget_pointer": "\uc608\uc0b0\uc774 \uc544\uc9c1 \uc5c6\ub294 \uac83 \uac19\uc2b5\ub2c8\ub2e4. <a href=\"budgets\">\uc608\uc0b0<\/a> \ud398\uc774\uc9c0\uc5d0\uc11c \uc608\uc0b0\uc744 \ub9cc\ub4e4\uc5b4\uc57c \ud569\ub2c8\ub2e4. \uc608\uc0b0\uc740 \uc9c0\ucd9c\uc744 \ucd94\uc801\ud558\ub294\ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.",
|
"no_budget_pointer": "\uc608\uc0b0\uc774 \uc544\uc9c1 \uc5c6\ub294 \uac83 \uac19\uc2b5\ub2c8\ub2e4. <a href=\"budgets\">\uc608\uc0b0<\/a> \ud398\uc774\uc9c0\uc5d0\uc11c \uc608\uc0b0\uc744 \ub9cc\ub4e4\uc5b4\uc57c \ud569\ub2c8\ub2e4. \uc608\uc0b0\uc740 \uc9c0\ucd9c\uc744 \ucd94\uc801\ud558\ub294\ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.",
|
||||||
"no_bill_pointer": "\uccad\uad6c\uc11c\uac00 \uc544\uc9c1 \uc5c6\ub294 \uac83 \uac19\uc2b5\ub2c8\ub2e4. <a href=\"bills\">\uccad\uad6c\uc11c<\/a> \ud398\uc774\uc9c0\uc5d0\uc11c \uccad\uad6c\uc11c\ub97c \ub9cc\ub4e4\uc5b4\uc57c \ud569\ub2c8\ub2e4. \uccad\uad6c\uc11c\ub294 \ube44\uc6a9\uc744 \ucd94\uc801\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\uc18c\uc2a4 \uacc4\uc815",
|
"source_account": "\uc18c\uc2a4 \uacc4\uc815",
|
||||||
"hidden_fields_preferences": "<a href=\"preferences\">\ud658\uacbd\uc124\uc815<\/a>\uc5d0\uc11c \ub354 \ub9ce\uc740 \uac70\ub798 \uc635\uc158\uc744 \ud65c\uc131\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.",
|
"hidden_fields_preferences": "<a href=\"preferences\">\ud658\uacbd\uc124\uc815<\/a>\uc5d0\uc11c \ub354 \ub9ce\uc740 \uac70\ub798 \uc635\uc158\uc744 \ud65c\uc131\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||||
"destination_account": "\ub300\uc0c1 \uacc4\uc815",
|
"destination_account": "\ub300\uc0c1 \uacc4\uc815",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "\uc774 \uac70\ub798\uac00 \uc218\uc815\ub418\uc5c8\uae30 \ub54c\ubb38\uc5d0, \uacc4\uc88c\ub098 \uae08\uc561\uc744 \uc5c5\ub370\uc774\ud2b8 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
"is_reconciled_fields_dropped": "\uc774 \uac70\ub798\uac00 \uc218\uc815\ub418\uc5c8\uae30 \ub54c\ubb38\uc5d0, \uacc4\uc88c\ub098 \uae08\uc561\uc744 \uc5c5\ub370\uc774\ud2b8 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||||
"tags": "\ud0dc\uadf8",
|
"tags": "\ud0dc\uadf8",
|
||||||
"no_budget": "(\uc608\uc0b0 \uc5c6\uc74c)",
|
"no_budget": "(\uc608\uc0b0 \uc5c6\uc74c)",
|
||||||
"no_bill": "(\uccad\uad6c\uc11c \uc5c6\uc74c)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\uce74\ud14c\uace0\ub9ac",
|
"category": "\uce74\ud14c\uace0\ub9ac",
|
||||||
"attachments": "\ucca8\ubd80 \ud30c\uc77c",
|
"attachments": "\ucca8\ubd80 \ud30c\uc77c",
|
||||||
"notes": "\ub178\ud2b8",
|
"notes": "\ub178\ud2b8",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\uc870\uc815 \uac70\ub798\uc758 \ub300\uc0c1 \uacc4\uc815\uc740 \ud3b8\uc9d1\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
"destination_account_reconciliation": "\uc870\uc815 \uac70\ub798\uc758 \ub300\uc0c1 \uacc4\uc815\uc740 \ud3b8\uc9d1\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||||
"source_account_reconciliation": "\uc870\uc815 \uac70\ub798\uc758 \uc18c\uc2a4 \uacc4\uc815\uc740 \ud3b8\uc9d1\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
"source_account_reconciliation": "\uc870\uc815 \uac70\ub798\uc758 \uc18c\uc2a4 \uacc4\uc815\uc740 \ud3b8\uc9d1\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||||
"budget": "\uc608\uc0b0",
|
"budget": "\uc608\uc0b0",
|
||||||
"bill": "\uccad\uad6c\uc11c",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\ucd9c\uae08\uc744 \uc0dd\uc131\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.",
|
"you_create_withdrawal": "\ucd9c\uae08\uc744 \uc0dd\uc131\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||||
"you_create_transfer": "\uc804\uc1a1\uc744 \uc0dd\uc131\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.",
|
"you_create_transfer": "\uc804\uc1a1\uc744 \uc0dd\uc131\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||||
"you_create_deposit": "\uc785\uae08\uc744 \uc0dd\uc131\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.",
|
"you_create_deposit": "\uc785\uae08\uc744 \uc0dd\uc131\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Bruk regler",
|
"apply_rules_checkbox": "Bruk regler",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Det ser ikke ut til at du har noen budsjetter enn\u00e5. Du b\u00f8r opprette noen p\u00e5 <a href=\"\/budgets\">budsjett<\/a>-siden. Budsjetter kan hjelpe deg med \u00e5 holde oversikt over utgifter.",
|
"no_budget_pointer": "Det ser ikke ut til at du har noen budsjetter enn\u00e5. Du b\u00f8r opprette noen p\u00e5 <a href=\"\/budgets\">budsjett<\/a>-siden. Budsjetter kan hjelpe deg med \u00e5 holde oversikt over utgifter.",
|
||||||
"no_bill_pointer": "Det ser ut til at du ikke har noen regninger enn\u00e5. Du b\u00f8r opprette noen p\u00e5 <a href=\"bills\">regninger<\/a>-side. Regninger kan hjelpe deg med \u00e5 holde oversikt over utgifter.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Kildekonto",
|
"source_account": "Kildekonto",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "Destinasjonskonto",
|
"destination_account": "Destinasjonskonto",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Fordi denne transaksjonen er avstemt, vil du ikke kunne oppdatere kontoene eller bel\u00f8pene.",
|
"is_reconciled_fields_dropped": "Fordi denne transaksjonen er avstemt, vil du ikke kunne oppdatere kontoene eller bel\u00f8pene.",
|
||||||
"tags": "Tagger",
|
"tags": "Tagger",
|
||||||
"no_budget": "(ingen budsjett)",
|
"no_budget": "(ingen budsjett)",
|
||||||
"no_bill": "(ingen regning)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Vedlegg",
|
"attachments": "Vedlegg",
|
||||||
"notes": "Notater",
|
"notes": "Notater",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.",
|
"destination_account_reconciliation": "Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.",
|
||||||
"source_account_reconciliation": "Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.",
|
"source_account_reconciliation": "Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.",
|
||||||
"budget": "Budsjett",
|
"budget": "Budsjett",
|
||||||
"bill": "Regning",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Du lager et uttak.",
|
"you_create_withdrawal": "Du lager et uttak.",
|
||||||
"you_create_transfer": "Du lager en overf\u00f8ring.",
|
"you_create_transfer": "Du lager en overf\u00f8ring.",
|
||||||
"you_create_deposit": "Du lager en innskud.",
|
"you_create_deposit": "Du lager en innskud.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Regels toepassen",
|
"apply_rules_checkbox": "Regels toepassen",
|
||||||
"fire_webhooks_checkbox": "Webhooks starten",
|
"fire_webhooks_checkbox": "Webhooks starten",
|
||||||
"no_budget_pointer": "Je hebt nog geen budgetten. Maak er een aantal op de <a href=\"budgets\">budgetten<\/a>-pagina. Met budgetten kan je je uitgaven beter bijhouden.",
|
"no_budget_pointer": "Je hebt nog geen budgetten. Maak er een aantal op de <a href=\"budgets\">budgetten<\/a>-pagina. Met budgetten kan je je uitgaven beter bijhouden.",
|
||||||
"no_bill_pointer": "Je hebt nog geen contracten. Maak er een aantal op de <a href=\"bills\">contracten<\/a>-pagina. Met contracten kan je je uitgaven beter bijhouden.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Bronrekening",
|
"source_account": "Bronrekening",
|
||||||
"hidden_fields_preferences": "Je kan meer transactieopties inschakelen in je <a href=\"preferences\">instellingen<\/a>.",
|
"hidden_fields_preferences": "Je kan meer transactieopties inschakelen in je <a href=\"preferences\">instellingen<\/a>.",
|
||||||
"destination_account": "Doelrekening",
|
"destination_account": "Doelrekening",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Omdat deze transactie al is afgestemd, kan je het bedrag noch de rekeningen wijzigen.",
|
"is_reconciled_fields_dropped": "Omdat deze transactie al is afgestemd, kan je het bedrag noch de rekeningen wijzigen.",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"no_budget": "(geen budget)",
|
"no_budget": "(geen budget)",
|
||||||
"no_bill": "(geen contract)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categorie",
|
"category": "Categorie",
|
||||||
"attachments": "Bijlagen",
|
"attachments": "Bijlagen",
|
||||||
"notes": "Notities",
|
"notes": "Notities",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Je kan de doelrekening van een afstemming niet wijzigen.",
|
"destination_account_reconciliation": "Je kan de doelrekening van een afstemming niet wijzigen.",
|
||||||
"source_account_reconciliation": "Je kan de bronrekening van een afstemming niet wijzigen.",
|
"source_account_reconciliation": "Je kan de bronrekening van een afstemming niet wijzigen.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Contract",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Je maakt een uitgave.",
|
"you_create_withdrawal": "Je maakt een uitgave.",
|
||||||
"you_create_transfer": "Je maakt een overschrijving.",
|
"you_create_transfer": "Je maakt een overschrijving.",
|
||||||
"you_create_deposit": "Je maakt inkomsten.",
|
"you_create_deposit": "Je maakt inkomsten.",
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
"webhook_delivery": "Bericht",
|
"webhook_delivery": "Bericht",
|
||||||
"from_currency_to_currency": "{from} → {to}",
|
"from_currency_to_currency": "{from} → {to}",
|
||||||
"to_currency_from_currency": "{to} → {from}",
|
"to_currency_from_currency": "{to} → {from}",
|
||||||
"rate": "Rate"
|
"rate": "Tarief"
|
||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"active": "Actief?",
|
"active": "Actief?",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Bruk reglar",
|
"apply_rules_checkbox": "Bruk reglar",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Det ser ikkje ut til at du har budsjett enda. Du b\u00f8r oppretta nokon p\u00e5 <a href=\"\/budgets\">budsjett<\/a>-sida. Budsjett kan hjelpa deg med \u00e5 halda oversikt over utgifter.",
|
"no_budget_pointer": "Det ser ikkje ut til at du har budsjett enda. Du b\u00f8r oppretta nokon p\u00e5 <a href=\"\/budgets\">budsjett<\/a>-sida. Budsjett kan hjelpa deg med \u00e5 halda oversikt over utgifter.",
|
||||||
"no_bill_pointer": "Det ser ut til at du ikkje har nokon rekningar enda. Du b\u00f8r oppretta nokon p\u00e5 <a href=\"bills\">rekningar<\/a>-side. Rekningar kan hjelpa deg med \u00e5 holde oversikt over utgifter.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Kjeldekonto",
|
"source_account": "Kjeldekonto",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "M\u00e5lkonto",
|
"destination_account": "M\u00e5lkonto",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "N\u00f8kkelord",
|
"tags": "N\u00f8kkelord",
|
||||||
"no_budget": "(ingen budsjett)",
|
"no_budget": "(ingen budsjett)",
|
||||||
"no_bill": "(ingen rekning)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Vedlegg",
|
"attachments": "Vedlegg",
|
||||||
"notes": "Notat",
|
"notes": "Notat",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.",
|
"destination_account_reconciliation": "Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.",
|
||||||
"source_account_reconciliation": "Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.",
|
"source_account_reconciliation": "Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.",
|
||||||
"budget": "Budsjett",
|
"budget": "Budsjett",
|
||||||
"bill": "Rekning",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Du lager eit uttak.",
|
"you_create_withdrawal": "Du lager eit uttak.",
|
||||||
"you_create_transfer": "Du lager ein overf\u00f8ring.",
|
"you_create_transfer": "Du lager ein overf\u00f8ring.",
|
||||||
"you_create_deposit": "Du lager ein innskud.",
|
"you_create_deposit": "Du lager ein innskud.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Zastosuj regu\u0142y",
|
"apply_rules_checkbox": "Zastosuj regu\u0142y",
|
||||||
"fire_webhooks_checkbox": "Uruchom webhooki",
|
"fire_webhooks_checkbox": "Uruchom webhooki",
|
||||||
"no_budget_pointer": "Wygl\u0105da na to, \u017ce nie masz jeszcze bud\u017cet\u00f3w. Powiniene\u015b utworzy\u0107 kilka na stronie <a href=\"budgets\">bud\u017cet\u00f3w<\/a>. Bud\u017cety mog\u0105 Ci pom\u00f3c \u015bledzi\u0107 wydatki.",
|
"no_budget_pointer": "Wygl\u0105da na to, \u017ce nie masz jeszcze bud\u017cet\u00f3w. Powiniene\u015b utworzy\u0107 kilka na stronie <a href=\"budgets\">bud\u017cet\u00f3w<\/a>. Bud\u017cety mog\u0105 Ci pom\u00f3c \u015bledzi\u0107 wydatki.",
|
||||||
"no_bill_pointer": "Wygl\u0105da na to, \u017ce nie masz jeszcze rachunk\u00f3w. Powiniene\u015b utworzy\u0107 kilka na stronie <a href=\"bills\">rachunk\u00f3w<\/a>. Rachunki mog\u0105 Ci pom\u00f3c \u015bledzi\u0107 wydatki.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Konto \u017ar\u00f3d\u0142owe",
|
"source_account": "Konto \u017ar\u00f3d\u0142owe",
|
||||||
"hidden_fields_preferences": "Mo\u017cesz w\u0142\u0105czy\u0107 wi\u0119cej opcji transakcji w swoich <a href=\"preferences\">ustawieniach<\/a>.",
|
"hidden_fields_preferences": "Mo\u017cesz w\u0142\u0105czy\u0107 wi\u0119cej opcji transakcji w swoich <a href=\"preferences\">ustawieniach<\/a>.",
|
||||||
"destination_account": "Konto docelowe",
|
"destination_account": "Konto docelowe",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Poniewa\u017c ta transakcja jest uzgodniona, nie b\u0119dziesz w stanie zaktualizowa\u0107 ani kont, ani kwot.",
|
"is_reconciled_fields_dropped": "Poniewa\u017c ta transakcja jest uzgodniona, nie b\u0119dziesz w stanie zaktualizowa\u0107 ani kont, ani kwot.",
|
||||||
"tags": "Tagi",
|
"tags": "Tagi",
|
||||||
"no_budget": "(brak bud\u017cetu)",
|
"no_budget": "(brak bud\u017cetu)",
|
||||||
"no_bill": "(brak rachunku)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategoria",
|
"category": "Kategoria",
|
||||||
"attachments": "Za\u0142\u0105czniki",
|
"attachments": "Za\u0142\u0105czniki",
|
||||||
"notes": "Notatki",
|
"notes": "Notatki",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Nie mo\u017cesz edytowa\u0107 konta docelowego transakcji uzgadniania.",
|
"destination_account_reconciliation": "Nie mo\u017cesz edytowa\u0107 konta docelowego transakcji uzgadniania.",
|
||||||
"source_account_reconciliation": "Nie mo\u017cesz edytowa\u0107 konta \u017ar\u00f3d\u0142owego transakcji uzgadniania.",
|
"source_account_reconciliation": "Nie mo\u017cesz edytowa\u0107 konta \u017ar\u00f3d\u0142owego transakcji uzgadniania.",
|
||||||
"budget": "Bud\u017cet",
|
"budget": "Bud\u017cet",
|
||||||
"bill": "Rachunek",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Tworzysz wydatek.",
|
"you_create_withdrawal": "Tworzysz wydatek.",
|
||||||
"you_create_transfer": "Tworzysz przelew.",
|
"you_create_transfer": "Tworzysz przelew.",
|
||||||
"you_create_deposit": "Tworzysz wp\u0142at\u0119.",
|
"you_create_deposit": "Tworzysz wp\u0142at\u0119.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Aplicar regras",
|
"apply_rules_checkbox": "Aplicar regras",
|
||||||
"fire_webhooks_checkbox": "Acionar webhooks",
|
"fire_webhooks_checkbox": "Acionar webhooks",
|
||||||
"no_budget_pointer": "Parece que voc\u00ea ainda n\u00e3o tem or\u00e7amentos. Voc\u00ea deve criar alguns na p\u00e1gina de <a href=\"budgets\">or\u00e7amentos<\/a>. Or\u00e7amentos podem ajud\u00e1-lo a manter o controle das despesas.",
|
"no_budget_pointer": "Parece que voc\u00ea ainda n\u00e3o tem or\u00e7amentos. Voc\u00ea deve criar alguns na p\u00e1gina de <a href=\"budgets\">or\u00e7amentos<\/a>. Or\u00e7amentos podem ajud\u00e1-lo a manter o controle das despesas.",
|
||||||
"no_bill_pointer": "Parece que voc\u00ea ainda n\u00e3o tem faturas. Voc\u00ea deve criar algumas em <a href=\"bills\">faturas<\/a>. Faturas podem ajudar voc\u00ea a manter o controle de despesas.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Conta origem",
|
"source_account": "Conta origem",
|
||||||
"hidden_fields_preferences": "Voc\u00ea pode habilitar mais op\u00e7\u00f5es de transa\u00e7\u00e3o em suas <a href=\"preferences\">prefer\u00eancias<\/a>.",
|
"hidden_fields_preferences": "Voc\u00ea pode habilitar mais op\u00e7\u00f5es de transa\u00e7\u00e3o em suas <a href=\"preferences\">prefer\u00eancias<\/a>.",
|
||||||
"destination_account": "Conta destino",
|
"destination_account": "Conta destino",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Como a transa\u00e7\u00e3o est\u00e1 reconciliada, voc\u00ea n\u00e3o pode atualizar as contas, nem o(s) valor(es).",
|
"is_reconciled_fields_dropped": "Como a transa\u00e7\u00e3o est\u00e1 reconciliada, voc\u00ea n\u00e3o pode atualizar as contas, nem o(s) valor(es).",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"no_budget": "(sem or\u00e7amento)",
|
"no_budget": "(sem or\u00e7amento)",
|
||||||
"no_bill": "(sem fatura)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Anexos",
|
"attachments": "Anexos",
|
||||||
"notes": "Notas",
|
"notes": "Notas",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Voc\u00ea n\u00e3o pode editar a conta destino de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
"destination_account_reconciliation": "Voc\u00ea n\u00e3o pode editar a conta destino de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
||||||
"source_account_reconciliation": "Voc\u00ea n\u00e3o pode editar a conta de origem de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
"source_account_reconciliation": "Voc\u00ea n\u00e3o pode editar a conta de origem de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
||||||
"budget": "Or\u00e7amento",
|
"budget": "Or\u00e7amento",
|
||||||
"bill": "Fatura",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Voc\u00ea est\u00e1 criando uma sa\u00edda.",
|
"you_create_withdrawal": "Voc\u00ea est\u00e1 criando uma sa\u00edda.",
|
||||||
"you_create_transfer": "Voc\u00ea est\u00e1 criando uma transfer\u00eancia.",
|
"you_create_transfer": "Voc\u00ea est\u00e1 criando uma transfer\u00eancia.",
|
||||||
"you_create_deposit": "Voc\u00ea est\u00e1 criando uma entrada.",
|
"you_create_deposit": "Voc\u00ea est\u00e1 criando uma entrada.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Aplicar regras",
|
"apply_rules_checkbox": "Aplicar regras",
|
||||||
"fire_webhooks_checkbox": "Ativar webhooks",
|
"fire_webhooks_checkbox": "Ativar webhooks",
|
||||||
"no_budget_pointer": "Parece que ainda n\u00e3o tem or\u00e7amentos. Pode cri\u00e1-los na p\u00e1gina de <a href=\"budgets\">or\u00e7amentos<\/a>. Os or\u00e7amentos podem ajud\u00e1-lo a controlar as despesas.",
|
"no_budget_pointer": "Parece que ainda n\u00e3o tem or\u00e7amentos. Pode cri\u00e1-los na p\u00e1gina de <a href=\"budgets\">or\u00e7amentos<\/a>. Os or\u00e7amentos podem ajud\u00e1-lo a controlar as despesas.",
|
||||||
"no_bill_pointer": "Parece que ainda n\u00e3o tem encargos. Pode cri\u00e1-los na p\u00e1gina de <a href=\"bills\">encargos<\/a>. Os Encargos podem ajud\u00e1-lo a controlar as despesas.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Conta de origem",
|
"source_account": "Conta de origem",
|
||||||
"hidden_fields_preferences": "Pode ativar mais op\u00e7\u00f5es de transa\u00e7\u00f5es nas suas <a href=\"preferences\">prefer\u00eancias<\/a>.",
|
"hidden_fields_preferences": "Pode ativar mais op\u00e7\u00f5es de transa\u00e7\u00f5es nas suas <a href=\"preferences\">prefer\u00eancias<\/a>.",
|
||||||
"destination_account": "Conta de destino",
|
"destination_account": "Conta de destino",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Como esta transa\u00e7\u00e3o est\u00e1 reconciliada, n\u00e3o pode atualizar as contas, nem os montantes.",
|
"is_reconciled_fields_dropped": "Como esta transa\u00e7\u00e3o est\u00e1 reconciliada, n\u00e3o pode atualizar as contas, nem os montantes.",
|
||||||
"tags": "Etiquetas",
|
"tags": "Etiquetas",
|
||||||
"no_budget": "(sem or\u00e7amento)",
|
"no_budget": "(sem or\u00e7amento)",
|
||||||
"no_bill": "(sem encargo)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Anexos",
|
"attachments": "Anexos",
|
||||||
"notes": "Notas",
|
"notes": "Notas",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "N\u00e3o pode editar a conta de destino de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
"destination_account_reconciliation": "N\u00e3o pode editar a conta de destino de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
||||||
"source_account_reconciliation": "N\u00e3o pode editar a conta de origem de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
"source_account_reconciliation": "N\u00e3o pode editar a conta de origem de uma transa\u00e7\u00e3o de reconcilia\u00e7\u00e3o.",
|
||||||
"budget": "Or\u00e7amento",
|
"budget": "Or\u00e7amento",
|
||||||
"bill": "Encargo",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Est\u00e1 a criar um levantamento.",
|
"you_create_withdrawal": "Est\u00e1 a criar um levantamento.",
|
||||||
"you_create_transfer": "Est\u00e1 a criar uma transfer\u00eancia.",
|
"you_create_transfer": "Est\u00e1 a criar uma transfer\u00eancia.",
|
||||||
"you_create_deposit": "Est\u00e1 a criar um dep\u00f3sito.",
|
"you_create_deposit": "Est\u00e1 a criar um dep\u00f3sito.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Aplic\u0103 regulile",
|
"apply_rules_checkbox": "Aplic\u0103 regulile",
|
||||||
"fire_webhooks_checkbox": "Webhook-uri de incendiu",
|
"fire_webhooks_checkbox": "Webhook-uri de incendiu",
|
||||||
"no_budget_pointer": "Se pare c\u0103 nu ave\u021bi \u00eenc\u0103 bugete. Ar trebui s\u0103 crea\u021bi c\u00e2teva pe pagina <a href=\"\/budgets\">bugete<\/a>. Bugetele v\u0103 pot ajuta s\u0103 \u021bine\u021bi eviden\u021ba cheltuielilor.",
|
"no_budget_pointer": "Se pare c\u0103 nu ave\u021bi \u00eenc\u0103 bugete. Ar trebui s\u0103 crea\u021bi c\u00e2teva pe pagina <a href=\"\/budgets\">bugete<\/a>. Bugetele v\u0103 pot ajuta s\u0103 \u021bine\u021bi eviden\u021ba cheltuielilor.",
|
||||||
"no_bill_pointer": "Se pare c\u0103 nu ave\u021bi \u00eenc\u0103 facturi. Ar trebui s\u0103 crea\u021bi unele pe pagina <a href=\"bills\">facturi<\/a>. Facturile v\u0103 pot ajuta s\u0103 \u021bine\u021bi eviden\u021ba cheltuielilor.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Contul surs\u0103",
|
"source_account": "Contul surs\u0103",
|
||||||
"hidden_fields_preferences": "Pute\u021bi activa mai multe op\u021biuni de tranzac\u021bie \u00een <a href=\"preferences\">preferin\u021bele<\/a> dvs.",
|
"hidden_fields_preferences": "Pute\u021bi activa mai multe op\u021biuni de tranzac\u021bie \u00een <a href=\"preferences\">preferin\u021bele<\/a> dvs.",
|
||||||
"destination_account": "Contul de destina\u021bie",
|
"destination_account": "Contul de destina\u021bie",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Etichete",
|
"tags": "Etichete",
|
||||||
"no_budget": "(nici un buget)",
|
"no_budget": "(nici un buget)",
|
||||||
"no_bill": "(f\u0103r\u0103 factur\u0103)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Categorie",
|
"category": "Categorie",
|
||||||
"attachments": "Ata\u0219amente",
|
"attachments": "Ata\u0219amente",
|
||||||
"notes": "Noti\u021be",
|
"notes": "Noti\u021be",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Nu pute\u021bi edita contul de destina\u021bie al unei tranzac\u021bii de reconciliere.",
|
"destination_account_reconciliation": "Nu pute\u021bi edita contul de destina\u021bie al unei tranzac\u021bii de reconciliere.",
|
||||||
"source_account_reconciliation": "Nu pute\u021bi edita contul surs\u0103 al unei tranzac\u021bii de reconciliere.",
|
"source_account_reconciliation": "Nu pute\u021bi edita contul surs\u0103 al unei tranzac\u021bii de reconciliere.",
|
||||||
"budget": "Buget",
|
"budget": "Buget",
|
||||||
"bill": "Factur\u0103",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Creezi o retragere.",
|
"you_create_withdrawal": "Creezi o retragere.",
|
||||||
"you_create_transfer": "Creezi un transfer.",
|
"you_create_transfer": "Creezi un transfer.",
|
||||||
"you_create_deposit": "Creezi un depozit.",
|
"you_create_deposit": "Creezi un depozit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430",
|
"apply_rules_checkbox": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "\u041f\u043e\u0445\u043e\u0436\u0435, \u0443 \u0432\u0430\u0441 \u043f\u043e\u043a\u0430 \u043d\u0435\u0442 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u0432. \u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0445 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 <a href=\"budgets\">\u0411\u044e\u0434\u0436\u0435\u0442\u044b<\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0430\u0441\u0445\u043e\u0434\u044b.",
|
"no_budget_pointer": "\u041f\u043e\u0445\u043e\u0436\u0435, \u0443 \u0432\u0430\u0441 \u043f\u043e\u043a\u0430 \u043d\u0435\u0442 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u0432. \u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0445 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 <a href=\"budgets\">\u0411\u044e\u0434\u0436\u0435\u0442\u044b<\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0430\u0441\u0445\u043e\u0434\u044b.",
|
||||||
"no_bill_pointer": "\u041f\u043e\u0445\u043e\u0436\u0435, \u0443 \u0432\u0430\u0441 \u043f\u043e\u043a\u0430 \u043d\u0435\u0442 \u0441\u0447\u0435\u0442\u043e\u0432 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443. \u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0445 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 <a href=\"bills\">\u0421\u0447\u0435\u0442\u0430 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443<\/a>. \u0421\u0447\u0435\u0442\u0430 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443 \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0430\u0441\u0445\u043e\u0434\u044b.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
"source_account": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||||
"hidden_fields_preferences": "\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0432 <a href=\"preferences\">\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445<\/a>.",
|
"hidden_fields_preferences": "\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0432 <a href=\"preferences\">\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445<\/a>.",
|
||||||
"destination_account": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
|
"destination_account": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "\u041f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u044d\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0441\u0432\u0435\u0440\u0435\u043d\u0430, \u0432\u044b \u043d\u0435 \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0447\u0435\u0442\u0430, \u043d\u0438 \u0441\u0443\u043c\u043c\u0443(\u044b).",
|
"is_reconciled_fields_dropped": "\u041f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u044d\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0441\u0432\u0435\u0440\u0435\u043d\u0430, \u0432\u044b \u043d\u0435 \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0447\u0435\u0442\u0430, \u043d\u0438 \u0441\u0443\u043c\u043c\u0443(\u044b).",
|
||||||
"tags": "\u041c\u0435\u0442\u043a\u0438",
|
"tags": "\u041c\u0435\u0442\u043a\u0438",
|
||||||
"no_budget": "(\u0432\u043d\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0430)",
|
"no_budget": "(\u0432\u043d\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0430)",
|
||||||
"no_bill": "(\u043d\u0435\u0442 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
||||||
"attachments": "\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"attachments": "\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438",
|
"notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0441\u0432\u0435\u0440\u044f\u0435\u043c\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438.",
|
"destination_account_reconciliation": "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0441\u0432\u0435\u0440\u044f\u0435\u043c\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438.",
|
||||||
"source_account_reconciliation": "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0434\u043b\u044f \u0441\u0432\u0435\u0440\u044f\u0435\u043c\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438.",
|
"source_account_reconciliation": "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0434\u043b\u044f \u0441\u0432\u0435\u0440\u044f\u0435\u043c\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438.",
|
||||||
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"bill": "\u0421\u0447\u0451\u0442 \u043a \u043e\u043f\u043b\u0430\u0442\u0435",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\u0412\u044b \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0435 \u0440\u0430\u0441\u0445\u043e\u0434.",
|
"you_create_withdrawal": "\u0412\u044b \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0435 \u0440\u0430\u0441\u0445\u043e\u0434.",
|
||||||
"you_create_transfer": "\u0412\u044b \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0435 \u043f\u0435\u0440\u0435\u0432\u043e\u0434.",
|
"you_create_transfer": "\u0412\u044b \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0435 \u043f\u0435\u0440\u0435\u0432\u043e\u0434.",
|
||||||
"you_create_deposit": "\u0412\u044b \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0435 \u0434\u043e\u0445\u043e\u0434.",
|
"you_create_deposit": "\u0412\u044b \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0435 \u0434\u043e\u0445\u043e\u0434.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Zd\u00e1 sa, \u017ee zatia\u013e nem\u00e1te \u017eiadne rozpo\u010dty. Na str\u00e1nke <a href=\"\/budgets\">rozpo\u010dty<\/a> by ste si nejak\u00e9 mali vytvori\u0165. Rozpo\u010dty m\u00f4\u017eu pom\u00f4c\u0165 udr\u017ea\u0165 preh\u013ead vo v\u00fddavkoch.",
|
"no_budget_pointer": "Zd\u00e1 sa, \u017ee zatia\u013e nem\u00e1te \u017eiadne rozpo\u010dty. Na str\u00e1nke <a href=\"\/budgets\">rozpo\u010dty<\/a> by ste si nejak\u00e9 mali vytvori\u0165. Rozpo\u010dty m\u00f4\u017eu pom\u00f4c\u0165 udr\u017ea\u0165 preh\u013ead vo v\u00fddavkoch.",
|
||||||
"no_bill_pointer": "Zd\u00e1 sa, \u017ee zatia\u013e nem\u00e1te \u017eiadne \u00fa\u010dty. Na str\u00e1nke <a href=\"\/bills\">\u00fa\u010dty<\/a> by ste mali nejak\u00e9 vytvori\u0165. \u00da\u010dty m\u00f4\u017eu pom\u00f4c\u0165 udr\u017ea\u0165 si preh\u013ead vo v\u00fddavkoch.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Zdrojov\u00fd \u00fa\u010det",
|
"source_account": "Zdrojov\u00fd \u00fa\u010det",
|
||||||
"hidden_fields_preferences": "Viac mo\u017enost\u00ed transakci\u00ed m\u00f4\u017eete povoli\u0165 vo svojich <a href=\"\/preferences\">nastaveniach<\/a>.",
|
"hidden_fields_preferences": "Viac mo\u017enost\u00ed transakci\u00ed m\u00f4\u017eete povoli\u0165 vo svojich <a href=\"\/preferences\">nastaveniach<\/a>.",
|
||||||
"destination_account": "Cie\u013eov\u00fd \u00fa\u010det",
|
"destination_account": "Cie\u013eov\u00fd \u00fa\u010det",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "\u0160t\u00edtky",
|
"tags": "\u0160t\u00edtky",
|
||||||
"no_budget": "(\u017eiadny rozpo\u010det)",
|
"no_budget": "(\u017eiadny rozpo\u010det)",
|
||||||
"no_bill": "(\u017eiadny \u00fa\u010det)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kateg\u00f3ria",
|
"category": "Kateg\u00f3ria",
|
||||||
"attachments": "Pr\u00edlohy",
|
"attachments": "Pr\u00edlohy",
|
||||||
"notes": "Pozn\u00e1mky",
|
"notes": "Pozn\u00e1mky",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Nem\u00f4\u017eete upravi\u0165 cie\u013eov\u00fd \u00fa\u010det z\u00fa\u010dtovacej transakcie.",
|
"destination_account_reconciliation": "Nem\u00f4\u017eete upravi\u0165 cie\u013eov\u00fd \u00fa\u010det z\u00fa\u010dtovacej transakcie.",
|
||||||
"source_account_reconciliation": "Nem\u00f4\u017eete upravi\u0165 zdrojov\u00fd \u00fa\u010det z\u00fa\u010dtovacej transakcie.",
|
"source_account_reconciliation": "Nem\u00f4\u017eete upravi\u0165 zdrojov\u00fd \u00fa\u010det z\u00fa\u010dtovacej transakcie.",
|
||||||
"budget": "Rozpo\u010det",
|
"budget": "Rozpo\u010det",
|
||||||
"bill": "\u00da\u010det",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Vytv\u00e1rate v\u00fdber.",
|
"you_create_withdrawal": "Vytv\u00e1rate v\u00fdber.",
|
||||||
"you_create_transfer": "Vytv\u00e1rate prevod.",
|
"you_create_transfer": "Vytv\u00e1rate prevod.",
|
||||||
"you_create_deposit": "Vytv\u00e1rate vklad.",
|
"you_create_deposit": "Vytv\u00e1rate vklad.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Uporabite pravila",
|
"apply_rules_checkbox": "Uporabite pravila",
|
||||||
"fire_webhooks_checkbox": "Spro\u017eite Webhooke",
|
"fire_webhooks_checkbox": "Spro\u017eite Webhooke",
|
||||||
"no_budget_pointer": "Zdi se, da \u0161e nimate prora\u010duna. Ustvarite jih nekaj na strani <a href=\"budgets\">prora\u010duni<\/a>. Prora\u010duni vam lahko pomagajo spremljati stro\u0161ke.",
|
"no_budget_pointer": "Zdi se, da \u0161e nimate prora\u010duna. Ustvarite jih nekaj na strani <a href=\"budgets\">prora\u010duni<\/a>. Prora\u010duni vam lahko pomagajo spremljati stro\u0161ke.",
|
||||||
"no_bill_pointer": "Zdi se, da \u0161e nimate ra\u010dunov. Ustvarite jih na strani <a href=\"bills\">ra\u010duni<\/a>. Ra\u010duni vam lahko pomagajo spremljati stro\u0161ke.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Izvorni ra\u010dun",
|
"source_account": "Izvorni ra\u010dun",
|
||||||
"hidden_fields_preferences": "Ve\u010d mo\u017enosti transakcije lahko omogo\u010dite v <a href=\"preferences\">nastavitvah<\/a>.",
|
"hidden_fields_preferences": "Ve\u010d mo\u017enosti transakcije lahko omogo\u010dite v <a href=\"preferences\">nastavitvah<\/a>.",
|
||||||
"destination_account": "Ciljni ra\u010dun",
|
"destination_account": "Ciljni ra\u010dun",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Ker je ta transakcija usklajena, ne boste mogli posodobiti ra\u010dunov niti zneskov.",
|
"is_reconciled_fields_dropped": "Ker je ta transakcija usklajena, ne boste mogli posodobiti ra\u010dunov niti zneskov.",
|
||||||
"tags": "Oznake",
|
"tags": "Oznake",
|
||||||
"no_budget": "(brez prora\u010duna)",
|
"no_budget": "(brez prora\u010duna)",
|
||||||
"no_bill": "(ni ra\u010duna)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategorija",
|
"category": "Kategorija",
|
||||||
"attachments": "Priloge",
|
"attachments": "Priloge",
|
||||||
"notes": "Opombe",
|
"notes": "Opombe",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Pri usklajevalni transakciji ni mo\u017eno urejati ciljnega ra\u010duna.",
|
"destination_account_reconciliation": "Pri usklajevalni transakciji ni mo\u017eno urejati ciljnega ra\u010duna.",
|
||||||
"source_account_reconciliation": "Pri usklajevalni transakciji ni mo\u017eno urejati izvornega ra\u010duna.",
|
"source_account_reconciliation": "Pri usklajevalni transakciji ni mo\u017eno urejati izvornega ra\u010duna.",
|
||||||
"budget": "Prora\u010dun",
|
"budget": "Prora\u010dun",
|
||||||
"bill": "Ra\u010dun",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Ustvarjate odliv.",
|
"you_create_withdrawal": "Ustvarjate odliv.",
|
||||||
"you_create_transfer": "Ustvarjate prenos.",
|
"you_create_transfer": "Ustvarjate prenos.",
|
||||||
"you_create_deposit": "Ustvarja\u0161 priliv.",
|
"you_create_deposit": "Ustvarja\u0161 priliv.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Du verkar inte ha n\u00e5gra budgetar \u00e4n. Du b\u00f6r skapa n\u00e5gra p\u00e5 <a href=\"budgets\">budgetar<\/a>-sidan. Budgetar kan hj\u00e4lpa dig att h\u00e5lla reda p\u00e5 utgifter.",
|
"no_budget_pointer": "Du verkar inte ha n\u00e5gra budgetar \u00e4n. Du b\u00f6r skapa n\u00e5gra p\u00e5 <a href=\"budgets\">budgetar<\/a>-sidan. Budgetar kan hj\u00e4lpa dig att h\u00e5lla reda p\u00e5 utgifter.",
|
||||||
"no_bill_pointer": "Du verkar inte ha n\u00e5gra r\u00e4kningar \u00e4nnu. Du b\u00f6r skapa n\u00e5gra p\u00e5 <a href=\"bills\">r\u00e4kningar<\/a>-sidan. R\u00e4kningar kan hj\u00e4lpa dig att h\u00e5lla reda p\u00e5 utgifter.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "K\u00e4llkonto",
|
"source_account": "K\u00e4llkonto",
|
||||||
"hidden_fields_preferences": "Du kan aktivera fler transaktionsalternativ i dina <a href=\"preferences\">inst\u00e4llningar<\/a>.",
|
"hidden_fields_preferences": "Du kan aktivera fler transaktionsalternativ i dina <a href=\"preferences\">inst\u00e4llningar<\/a>.",
|
||||||
"destination_account": "Till konto",
|
"destination_account": "Till konto",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Etiketter",
|
"tags": "Etiketter",
|
||||||
"no_budget": "(ingen budget)",
|
"no_budget": "(ingen budget)",
|
||||||
"no_bill": "(ingen r\u00e4kning)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Bilagor",
|
"attachments": "Bilagor",
|
||||||
"notes": "Noteringar",
|
"notes": "Noteringar",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Du kan inte redigera destinationskontot f\u00f6r en avst\u00e4mningstransaktion.",
|
"destination_account_reconciliation": "Du kan inte redigera destinationskontot f\u00f6r en avst\u00e4mningstransaktion.",
|
||||||
"source_account_reconciliation": "Du kan inte redigera k\u00e4llkontot f\u00f6r en avst\u00e4mningstransaktion.",
|
"source_account_reconciliation": "Du kan inte redigera k\u00e4llkontot f\u00f6r en avst\u00e4mningstransaktion.",
|
||||||
"budget": "Budget",
|
"budget": "Budget",
|
||||||
"bill": "Nota",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "Du skapar ett uttag.",
|
"you_create_withdrawal": "Du skapar ett uttag.",
|
||||||
"you_create_transfer": "Du skapar en \u00f6verf\u00f6ring.",
|
"you_create_transfer": "Du skapar en \u00f6verf\u00f6ring.",
|
||||||
"you_create_deposit": "Du skapar en ins\u00e4ttning.",
|
"you_create_deposit": "Du skapar en ins\u00e4ttning.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "Hen\u00fcz b\u00fct\u00e7eniz yok gibi g\u00f6r\u00fcn\u00fcyor. <a href=\"budgets\">b\u00fct\u00e7eler<\/a> sayfas\u0131nda biraz olu\u015fturmal\u0131s\u0131n\u0131z. B\u00fct\u00e7eler, giderleri takip etmenize yard\u0131mc\u0131 olabilir.",
|
"no_budget_pointer": "Hen\u00fcz b\u00fct\u00e7eniz yok gibi g\u00f6r\u00fcn\u00fcyor. <a href=\"budgets\">b\u00fct\u00e7eler<\/a> sayfas\u0131nda biraz olu\u015fturmal\u0131s\u0131n\u0131z. B\u00fct\u00e7eler, giderleri takip etmenize yard\u0131mc\u0131 olabilir.",
|
||||||
"no_bill_pointer": "Hen\u00fcz faturan\u0131z yok gibi g\u00f6r\u00fcn\u00fcyor. <a href=\"bills\">faturalar<\/a> sayfas\u0131nda biraz olu\u015fturmal\u0131s\u0131n\u0131z. Faturalar, harcamalar\u0131 takip etmenize yard\u0131mc\u0131 olabilir.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Kaynak hesap",
|
"source_account": "Kaynak hesap",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "Hedef hesap",
|
"destination_account": "Hedef hesap",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Etiketler",
|
"tags": "Etiketler",
|
||||||
"no_budget": "(b\u00fct\u00e7e yok)",
|
"no_budget": "(b\u00fct\u00e7e yok)",
|
||||||
"no_bill": "(hay\u0131r bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Ekler",
|
"attachments": "Ekler",
|
||||||
"notes": "Notlar",
|
"notes": "Notlar",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "Bir mutabakat i\u015fleminin hedef hesab\u0131n\u0131 d\u00fczenleyemezsiniz.",
|
"destination_account_reconciliation": "Bir mutabakat i\u015fleminin hedef hesab\u0131n\u0131 d\u00fczenleyemezsiniz.",
|
||||||
"source_account_reconciliation": "Bir mutabakat i\u015fleminin kaynak hesab\u0131n\u0131 d\u00fczenleyemezsiniz.",
|
"source_account_reconciliation": "Bir mutabakat i\u015fleminin kaynak hesab\u0131n\u0131 d\u00fczenleyemezsiniz.",
|
||||||
"budget": "B\u00fct\u00e7e",
|
"budget": "B\u00fct\u00e7e",
|
||||||
"bill": "Fatura",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u0430",
|
"apply_rules_checkbox": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u0430",
|
||||||
"fire_webhooks_checkbox": "\u041f\u043e\u0436\u0435\u0436\u043d\u0456 \u0432\u0435\u0431\u0433\u0430\u043a\u0438",
|
"fire_webhooks_checkbox": "\u041f\u043e\u0436\u0435\u0436\u043d\u0456 \u0432\u0435\u0431\u0433\u0430\u043a\u0438",
|
||||||
"no_budget_pointer": "\u0417\u0434\u0430\u0454\u0442\u044c\u0441\u044f, \u043d\u0435 \u0441\u0442\u0432\u043e\u0440\u0438\u043b\u0438 \u0436\u043e\u0434\u043d\u043e\u0433\u043e \u0431\u044e\u0434\u0436\u0435\u0442\u0443. \u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043e\u0434\u0438\u043d \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456 <a href=\"budgets\">\u0431\u044e\u0434\u0436\u0435\u0442\u0456\u0432<\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438 \u043c\u043e\u0436\u0443\u0442\u044c \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0442\u0438 \u0432\u0430\u043c \u0441\u0442\u0435\u0436\u0438\u0442\u0438 \u0437\u0430 \u0432\u0438\u0442\u0440\u0430\u0442\u0430\u043c\u0438.",
|
"no_budget_pointer": "\u0417\u0434\u0430\u0454\u0442\u044c\u0441\u044f, \u043d\u0435 \u0441\u0442\u0432\u043e\u0440\u0438\u043b\u0438 \u0436\u043e\u0434\u043d\u043e\u0433\u043e \u0431\u044e\u0434\u0436\u0435\u0442\u0443. \u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043e\u0434\u0438\u043d \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456 <a href=\"budgets\">\u0431\u044e\u0434\u0436\u0435\u0442\u0456\u0432<\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438 \u043c\u043e\u0436\u0443\u0442\u044c \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0442\u0438 \u0432\u0430\u043c \u0441\u0442\u0435\u0436\u0438\u0442\u0438 \u0437\u0430 \u0432\u0438\u0442\u0440\u0430\u0442\u0430\u043c\u0438.",
|
||||||
"no_bill_pointer": "\u0423 \u0432\u0430\u0441, \u0437\u0434\u0430\u0454\u0442\u044c\u0441\u044f, \u0449\u0435 \u043d\u0435\u043c\u0430\u0454 \u0440\u0430\u0445\u0443\u043d\u043a\u0456\u0432 \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438. \u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043a\u0456\u043b\u044c\u043a\u0430 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456 <a href=\"bills\">\u0440\u0430\u0445\u0443\u043d\u043a\u0456\u0432<\/a>. \u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u043c\u043e\u0436\u0443\u0442\u044c \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0442\u0438 \u0432\u0430\u043c \u0441\u0442\u0435\u0436\u0438\u0442\u0438 \u0437\u0430 \u0432\u0438\u0442\u0440\u0430\u0442\u0430\u043c\u0438.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
|
"source_account": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
|
||||||
"hidden_fields_preferences": "\u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0432\u0456\u043c\u043a\u043d\u0443\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u043e\u043f\u0446\u0456\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0457 \u0443 \u0432\u0430\u0448\u043e\u043c\u0443 <a href=\"preferences\">\u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f<\/a>.",
|
"hidden_fields_preferences": "\u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0432\u0456\u043c\u043a\u043d\u0443\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u043e\u043f\u0446\u0456\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0457 \u0443 \u0432\u0430\u0448\u043e\u043c\u0443 <a href=\"preferences\">\u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f<\/a>.",
|
||||||
"destination_account": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f",
|
"destination_account": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "\u0427\u0435\u0440\u0435\u0437 \u0442\u0435, \u0449\u043e \u0446\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u0430, \u0432\u0438 \u043d\u0435 \u0437\u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0431\u043b\u0456\u043a\u043e\u0432\u0456 \u0437\u0430\u043f\u0438\u0441\u0438, \u0430 \u0442\u0430\u043a\u043e\u0436 \u0441\u0443\u043c\u0438(\u0457).",
|
"is_reconciled_fields_dropped": "\u0427\u0435\u0440\u0435\u0437 \u0442\u0435, \u0449\u043e \u0446\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u0430, \u0432\u0438 \u043d\u0435 \u0437\u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0431\u043b\u0456\u043a\u043e\u0432\u0456 \u0437\u0430\u043f\u0438\u0441\u0438, \u0430 \u0442\u0430\u043a\u043e\u0436 \u0441\u0443\u043c\u0438(\u0457).",
|
||||||
"tags": "\u0422\u0435\u0433\u0438",
|
"tags": "\u0422\u0435\u0433\u0438",
|
||||||
"no_budget": "(\u043f\u043e\u0437\u0430 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u043c)",
|
"no_budget": "(\u043f\u043e\u0437\u0430 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u043c)",
|
||||||
"no_bill": "(\u043d\u0435\u043c\u0430\u0454 \u0440\u0430\u0445\u0443\u043d\u043a\u0443)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044f",
|
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044f",
|
||||||
"attachments": "\u0412\u043a\u043b\u0430\u0434\u0435\u043d\u043d\u044f",
|
"attachments": "\u0412\u043a\u043b\u0430\u0434\u0435\u043d\u043d\u044f",
|
||||||
"notes": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438",
|
"notes": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u043f\u043e\u0433\u043e\u0434\u0436\u0435\u043d\u043d\u044f, \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f.",
|
"destination_account_reconciliation": "\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u043f\u043e\u0433\u043e\u0434\u0436\u0435\u043d\u043d\u044f, \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f.",
|
||||||
"source_account_reconciliation": "\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u0437\u0432\u0456\u0440\u043a\u0438, \u0440\u0430\u0445\u0443\u043d\u043a\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430.",
|
"source_account_reconciliation": "\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u0437\u0432\u0456\u0440\u043a\u0438, \u0440\u0430\u0445\u0443\u043d\u043a\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430.",
|
||||||
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"bill": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\u0412\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435 \u0432\u0456\u0434\u043a\u043b\u0438\u043a\u0430\u043d\u043d\u044f.",
|
"you_create_withdrawal": "\u0412\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435 \u0432\u0456\u0434\u043a\u043b\u0438\u043a\u0430\u043d\u043d\u044f.",
|
||||||
"you_create_transfer": "\u0412\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435 \u043f\u0435\u0440\u0435\u043a\u0430\u0437.",
|
"you_create_transfer": "\u0412\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435 \u043f\u0435\u0440\u0435\u043a\u0430\u0437.",
|
||||||
"you_create_deposit": "\u0412\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435 \u0434\u0435\u043f\u043e\u0437\u0438\u0442.",
|
"you_create_deposit": "\u0412\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435 \u0434\u0435\u043f\u043e\u0437\u0438\u0442.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "D\u01b0\u1eddng nh\u01b0 b\u1ea1n ch\u01b0a c\u00f3 ng\u00e2n s\u00e1ch. B\u1ea1n n\u00ean t\u1ea1o v\u00e0i c\u00e1i t\u1ea1i trang <a href=\"budgets\">ng\u00e2n s\u00e1ch<\/a>-. Ng\u00e2n s\u00e1ch c\u00f3 th\u1ec3 gi\u00fap b\u1ea1n theo d\u00f5i chi ti\u00eau.",
|
"no_budget_pointer": "D\u01b0\u1eddng nh\u01b0 b\u1ea1n ch\u01b0a c\u00f3 ng\u00e2n s\u00e1ch. B\u1ea1n n\u00ean t\u1ea1o v\u00e0i c\u00e1i t\u1ea1i trang <a href=\"budgets\">ng\u00e2n s\u00e1ch<\/a>-. Ng\u00e2n s\u00e1ch c\u00f3 th\u1ec3 gi\u00fap b\u1ea1n theo d\u00f5i chi ti\u00eau.",
|
||||||
"no_bill_pointer": "D\u01b0\u1eddng nh\u01b0 b\u1ea1n ch\u01b0a c\u00f3 h\u00f3a \u0111\u01a1n. B\u1ea1n n\u00ean t\u1ea1o v\u00e0i c\u00e1i t\u1ea1i trang <a href=\"bills\">h\u00f3a \u0111\u01a1n<\/a>-. H\u00f3a \u0111\u01a1n c\u00f3 th\u1ec3 gi\u00fap b\u1ea1n theo d\u00f5i chi ti\u00eau.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n",
|
"source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "T\u00e0i kho\u1ea3n \u0111\u00edch",
|
"destination_account": "T\u00e0i kho\u1ea3n \u0111\u00edch",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "Nh\u00e3n",
|
"tags": "Nh\u00e3n",
|
||||||
"no_budget": "(kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch)",
|
"no_budget": "(kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "Danh m\u1ee5c",
|
"category": "Danh m\u1ee5c",
|
||||||
"attachments": "T\u1ec7p \u0111\u00ednh k\u00e8m",
|
"attachments": "T\u1ec7p \u0111\u00ednh k\u00e8m",
|
||||||
"notes": "Ghi ch\u00fa",
|
"notes": "Ghi ch\u00fa",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "B\u1ea1n kh\u00f4ng th\u1ec3 ch\u1ec9nh s\u1eeda t\u00e0i kho\u1ea3n \u0111\u00edch c\u1ee7a giao d\u1ecbch \u0111\u1ed1i chi\u1ebfu.",
|
"destination_account_reconciliation": "B\u1ea1n kh\u00f4ng th\u1ec3 ch\u1ec9nh s\u1eeda t\u00e0i kho\u1ea3n \u0111\u00edch c\u1ee7a giao d\u1ecbch \u0111\u1ed1i chi\u1ebfu.",
|
||||||
"source_account_reconciliation": "B\u1ea1n kh\u00f4ng th\u1ec3 ch\u1ec9nh s\u1eeda t\u00e0i kho\u1ea3n ngu\u1ed3n c\u1ee7a giao d\u1ecbch \u0111\u1ed1i chi\u1ebfu.",
|
"source_account_reconciliation": "B\u1ea1n kh\u00f4ng th\u1ec3 ch\u1ec9nh s\u1eeda t\u00e0i kho\u1ea3n ngu\u1ed3n c\u1ee7a giao d\u1ecbch \u0111\u1ed1i chi\u1ebfu.",
|
||||||
"budget": "Ng\u00e2n s\u00e1ch",
|
"budget": "Ng\u00e2n s\u00e1ch",
|
||||||
"bill": "H\u00f3a \u0111\u01a1n",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "B\u1ea1n \u0111ang t\u1ea1o m\u1ed9t <strong>r\u00fat ti\u1ec1n<\/strong>.",
|
"you_create_withdrawal": "B\u1ea1n \u0111ang t\u1ea1o m\u1ed9t <strong>r\u00fat ti\u1ec1n<\/strong>.",
|
||||||
"you_create_transfer": "B\u1ea1n \u0111ang t\u1ea1o m\u1ed9t <strong>chuy\u1ec3n kho\u1ea3n<\/strong>.",
|
"you_create_transfer": "B\u1ea1n \u0111ang t\u1ea1o m\u1ed9t <strong>chuy\u1ec3n kho\u1ea3n<\/strong>.",
|
||||||
"you_create_deposit": "B\u1ea1n \u0111ang t\u1ea1o m\u1ed9t <strong>ti\u1ec1n g\u1eedi<\/strong>.",
|
"you_create_deposit": "B\u1ea1n \u0111ang t\u1ea1o m\u1ed9t <strong>ti\u1ec1n g\u1eedi<\/strong>.",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "\u5e94\u7528\u89c4\u5219",
|
"apply_rules_checkbox": "\u5e94\u7528\u89c4\u5219",
|
||||||
"fire_webhooks_checkbox": "\u89e6\u53d1 webhook",
|
"fire_webhooks_checkbox": "\u89e6\u53d1 webhook",
|
||||||
"no_budget_pointer": "\u60a8\u8fd8\u6ca1\u6709\u9884\u7b97\uff0c\u60a8\u5e94\u8be5\u5728<a href=\"budgets\">\u9884\u7b97\u9875\u9762<\/a>\u8fdb\u884c\u521b\u5efa\u3002\u9884\u7b97\u53ef\u4ee5\u5e2e\u52a9\u60a8\u8ffd\u8e2a\u652f\u51fa\u3002",
|
"no_budget_pointer": "\u60a8\u8fd8\u6ca1\u6709\u9884\u7b97\uff0c\u60a8\u5e94\u8be5\u5728<a href=\"budgets\">\u9884\u7b97\u9875\u9762<\/a>\u8fdb\u884c\u521b\u5efa\u3002\u9884\u7b97\u53ef\u4ee5\u5e2e\u52a9\u60a8\u8ffd\u8e2a\u652f\u51fa\u3002",
|
||||||
"no_bill_pointer": "\u60a8\u8fd8\u6ca1\u6709\u8d26\u5355\uff0c\u60a8\u5e94\u8be5\u5728<a href=\"bills\">\u8d26\u5355\u9875\u9762<\/a>\u8fdb\u884c\u521b\u5efa\u3002\u8d26\u5355\u53ef\u4ee5\u5e2e\u52a9\u60a8\u8ffd\u8e2a\u652f\u51fa\u3002",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u6765\u6e90\u8d26\u6237",
|
"source_account": "\u6765\u6e90\u8d26\u6237",
|
||||||
"hidden_fields_preferences": "\u60a8\u53ef\u4ee5\u5728<a href=\"preferences\">\u504f\u597d\u8bbe\u5b9a<\/a>\u4e2d\u542f\u7528\u66f4\u591a\u4ea4\u6613\u9009\u9879\u3002",
|
"hidden_fields_preferences": "\u60a8\u53ef\u4ee5\u5728<a href=\"preferences\">\u504f\u597d\u8bbe\u5b9a<\/a>\u4e2d\u542f\u7528\u66f4\u591a\u4ea4\u6613\u9009\u9879\u3002",
|
||||||
"destination_account": "\u76ee\u6807\u8d26\u6237",
|
"destination_account": "\u76ee\u6807\u8d26\u6237",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "\u8fd9\u7b14\u4ea4\u6613\u5df2\u7ecf\u5bf9\u8d26\uff0c\u60a8\u65e0\u6cd5\u66f4\u65b0\u8d26\u6237\uff0c\u4e5f\u65e0\u6cd5\u66f4\u65b0\u91d1\u989d\u3002",
|
"is_reconciled_fields_dropped": "\u8fd9\u7b14\u4ea4\u6613\u5df2\u7ecf\u5bf9\u8d26\uff0c\u60a8\u65e0\u6cd5\u66f4\u65b0\u8d26\u6237\uff0c\u4e5f\u65e0\u6cd5\u66f4\u65b0\u91d1\u989d\u3002",
|
||||||
"tags": "\u6807\u7b7e",
|
"tags": "\u6807\u7b7e",
|
||||||
"no_budget": "(\u65e0\u9884\u7b97)",
|
"no_budget": "(\u65e0\u9884\u7b97)",
|
||||||
"no_bill": "(\u65e0\u8d26\u5355)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u5206\u7c7b",
|
"category": "\u5206\u7c7b",
|
||||||
"attachments": "\u9644\u4ef6",
|
"attachments": "\u9644\u4ef6",
|
||||||
"notes": "\u5907\u6ce8",
|
"notes": "\u5907\u6ce8",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "\u60a8\u4e0d\u80fd\u7f16\u8f91\u5bf9\u8d26\u4ea4\u6613\u7684\u76ee\u6807\u8d26\u6237",
|
"destination_account_reconciliation": "\u60a8\u4e0d\u80fd\u7f16\u8f91\u5bf9\u8d26\u4ea4\u6613\u7684\u76ee\u6807\u8d26\u6237",
|
||||||
"source_account_reconciliation": "\u60a8\u4e0d\u80fd\u7f16\u8f91\u5bf9\u8d26\u4ea4\u6613\u7684\u6765\u6e90\u8d26\u6237\u3002",
|
"source_account_reconciliation": "\u60a8\u4e0d\u80fd\u7f16\u8f91\u5bf9\u8d26\u4ea4\u6613\u7684\u6765\u6e90\u8d26\u6237\u3002",
|
||||||
"budget": "\u9884\u7b97",
|
"budget": "\u9884\u7b97",
|
||||||
"bill": "\u8d26\u5355",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "\u60a8\u6b63\u5728\u521b\u5efa\u4e00\u7b14\u652f\u51fa",
|
"you_create_withdrawal": "\u60a8\u6b63\u5728\u521b\u5efa\u4e00\u7b14\u652f\u51fa",
|
||||||
"you_create_transfer": "\u60a8\u6b63\u5728\u521b\u5efa\u4e00\u7b14\u8f6c\u8d26",
|
"you_create_transfer": "\u60a8\u6b63\u5728\u521b\u5efa\u4e00\u7b14\u8f6c\u8d26",
|
||||||
"you_create_deposit": "\u60a8\u6b63\u5728\u521b\u5efa\u4e00\u7b14\u6536\u5165",
|
"you_create_deposit": "\u60a8\u6b63\u5728\u521b\u5efa\u4e00\u7b14\u6536\u5165",
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
"apply_rules_checkbox": "Apply rules",
|
"apply_rules_checkbox": "Apply rules",
|
||||||
"fire_webhooks_checkbox": "Fire webhooks",
|
"fire_webhooks_checkbox": "Fire webhooks",
|
||||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||||
"no_bill_pointer": "You seem to have no bills yet. You should create some on the <a href=\"bills\">bills<\/a>-page. Bills can help you keep track of expenses.",
|
"no_bill_pointer": "You seem to have no subscription yet. You should create some on the <a href=\"subscriptions\">subscription<\/a>-page. Subscriptions can help you keep track of expenses.",
|
||||||
"source_account": "\u4f86\u6e90\u5e33\u6236",
|
"source_account": "\u4f86\u6e90\u5e33\u6236",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
||||||
"destination_account": "\u76ee\u6a19\u5e33\u6236",
|
"destination_account": "\u76ee\u6a19\u5e33\u6236",
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
"is_reconciled_fields_dropped": "Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).",
|
||||||
"tags": "\u6a19\u7c64",
|
"tags": "\u6a19\u7c64",
|
||||||
"no_budget": "(\u7121\u9810\u7b97)",
|
"no_budget": "(\u7121\u9810\u7b97)",
|
||||||
"no_bill": "(no bill)",
|
"no_bill": "(no subscription)",
|
||||||
"category": "\u5206\u985e",
|
"category": "\u5206\u985e",
|
||||||
"attachments": "\u9644\u52a0\u6a94\u6848",
|
"attachments": "\u9644\u52a0\u6a94\u6848",
|
||||||
"notes": "\u5099\u8a3b",
|
"notes": "\u5099\u8a3b",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
"destination_account_reconciliation": "You can't edit the destination account of a reconciliation transaction.",
|
||||||
"source_account_reconciliation": "You can't edit the source account of a reconciliation transaction.",
|
"source_account_reconciliation": "You can't edit the source account of a reconciliation transaction.",
|
||||||
"budget": "\u9810\u7b97",
|
"budget": "\u9810\u7b97",
|
||||||
"bill": "\u5e33\u55ae",
|
"bill": "Subscription",
|
||||||
"you_create_withdrawal": "You're creating a withdrawal.",
|
"you_create_withdrawal": "You're creating a withdrawal.",
|
||||||
"you_create_transfer": "You're creating a transfer.",
|
"you_create_transfer": "You're creating a transfer.",
|
||||||
"you_create_deposit": "You're creating a deposit.",
|
"you_create_deposit": "You're creating a deposit.",
|
||||||
|
@@ -1766,7 +1766,7 @@ return [
|
|||||||
'updated_currency' => 'Currency :name updated',
|
'updated_currency' => 'Currency :name updated',
|
||||||
'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.',
|
'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.',
|
||||||
'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.',
|
'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.',
|
||||||
'currencies_switch_default' => 'If you have a large database, switching from one default currency to another may take a moment.',
|
'currencies_switch_default' => 'If you have a large database, switching from one default currency to another may take a moment.',
|
||||||
'make_default_currency' => 'Make default',
|
'make_default_currency' => 'Make default',
|
||||||
'default_currency' => 'default',
|
'default_currency' => 'default',
|
||||||
'currency_is_disabled' => 'Disabled',
|
'currency_is_disabled' => 'Disabled',
|
||||||
|
@@ -26,135 +26,135 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
// index
|
// index
|
||||||
'index_intro' => 'Welcome to the index page of Firefly III. Please take the time to walk through this intro to get a feeling of how Firefly III works.',
|
'index_intro' => 'Welcome to the index page of Firefly III. Please take the time to walk through this intro to get a feeling of how Firefly III works.',
|
||||||
'index_accounts-chart' => 'This chart shows the current balance of your asset accounts. You can select the accounts visible here in your preferences.',
|
'index_accounts-chart' => 'This chart shows the current balance of your asset accounts. You can select the accounts visible here in your preferences.',
|
||||||
'index_box_out_holder' => 'This little box and the boxes next to this one will give you a quick overview of your financial situation.',
|
'index_box_out_holder' => 'This little box and the boxes next to this one will give you a quick overview of your financial situation.',
|
||||||
'index_help' => 'If you ever need help with a page or a form, press this button.',
|
'index_help' => 'If you ever need help with a page or a form, press this button.',
|
||||||
'index_outro' => 'Most pages of Firefly III will start with a little tour like this one. Please contact me when you have questions or comments. Enjoy!',
|
'index_outro' => 'Most pages of Firefly III will start with a little tour like this one. Please contact me when you have questions or comments. Enjoy!',
|
||||||
'index_sidebar-toggle' => 'To create new transactions, accounts or other things, use the menu under this icon.',
|
'index_sidebar-toggle' => 'To create new transactions, accounts or other things, use the menu under this icon.',
|
||||||
'index_cash_account' => 'These are the accounts created so far. You can use the cash account to track cash expenses but it\'s not mandatory of course.',
|
'index_cash_account' => 'These are the accounts created so far. You can use the cash account to track cash expenses but it\'s not mandatory of course.',
|
||||||
|
|
||||||
// transactions
|
// transactions
|
||||||
'transactions_create_basic_info' => 'Enter the basic information of your transaction. Source, destination, date and description.',
|
'transactions_create_basic_info' => 'Enter the basic information of your transaction. Source, destination, date and description.',
|
||||||
'transactions_create_amount_info' => 'Enter the amount of the transaction. If necessary the fields will auto-update for foreign amount info.',
|
'transactions_create_amount_info' => 'Enter the amount of the transaction. If necessary the fields will auto-update for foreign amount info.',
|
||||||
'transactions_create_optional_info' => 'All of these fields are optional. Adding meta-data here will make your transactions better organised.',
|
'transactions_create_optional_info' => 'All of these fields are optional. Adding meta-data here will make your transactions better organised.',
|
||||||
'transactions_create_split' => 'If you want to split a transaction, add more splits with this button',
|
'transactions_create_split' => 'If you want to split a transaction, add more splits with this button',
|
||||||
|
|
||||||
// create account:
|
// create account:
|
||||||
'accounts_create_iban' => 'Give your accounts a valid IBAN. This could make a data import very easy in the future.',
|
'accounts_create_iban' => 'Give your accounts a valid IBAN. This could make a data import very easy in the future.',
|
||||||
'accounts_create_asset_opening_balance' => 'Assets accounts may have an "opening balance", indicating the start of this account\'s history in Firefly III.',
|
'accounts_create_asset_opening_balance' => 'Assets accounts may have an "opening balance", indicating the start of this account\'s history in Firefly III.',
|
||||||
'accounts_create_asset_currency' => 'Firefly III supports multiple currencies. Asset accounts have one main currency, which you must set here.',
|
'accounts_create_asset_currency' => 'Firefly III supports multiple currencies. Asset accounts have one main currency, which you must set here.',
|
||||||
'accounts_create_asset_virtual' => 'It can sometimes help to give your account a virtual balance: an extra amount always added to or removed from the actual balance.',
|
'accounts_create_asset_virtual' => 'It can sometimes help to give your account a virtual balance: an extra amount always added to or removed from the actual balance.',
|
||||||
|
|
||||||
// budgets index
|
// budgets index
|
||||||
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
||||||
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
||||||
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
||||||
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
||||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
||||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
||||||
|
|
||||||
// Ignore this comment
|
// Ignore this comment
|
||||||
|
|
||||||
// reports (index)
|
// reports (index)
|
||||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
||||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
||||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
||||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
||||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
||||||
|
|
||||||
// reports (reports)
|
// reports (reports)
|
||||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
||||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
||||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
||||||
|
|
||||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
||||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
||||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
||||||
|
|
||||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
||||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
||||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
||||||
|
|
||||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
||||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
||||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
||||||
|
|
||||||
// create transaction
|
// create transaction
|
||||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
||||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
||||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
||||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
||||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
||||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
||||||
|
|
||||||
// piggy banks index:
|
// piggy banks index:
|
||||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
||||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
||||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
||||||
|
|
||||||
// Ignore this comment
|
// Ignore this comment
|
||||||
|
|
||||||
// create piggy
|
// create piggy
|
||||||
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
||||||
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
||||||
|
|
||||||
// show piggy
|
// show piggy
|
||||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
||||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
||||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
||||||
|
|
||||||
// bill index
|
// bill index
|
||||||
'bills_index_rules' => 'Here you see which rules will check if this subscription is hit',
|
'bills_index_rules' => 'Here you see which rules will check if this subscription is hit',
|
||||||
'bills_index_paid_in_period' => 'This field indicates when the subscription was last paid.',
|
'bills_index_paid_in_period' => 'This field indicates when the subscription was last paid.',
|
||||||
'bills_index_expected_in_period' => 'This field indicates for each subscription if and when the next subscription is expected to hit.',
|
'bills_index_expected_in_period' => 'This field indicates for each subscription if and when the next subscription is expected to hit.',
|
||||||
|
|
||||||
'subscriptions_index_rules' => 'Here you see which rules will check if this subscription is hit',
|
'subscriptions_index_rules' => 'Here you see which rules will check if this subscription is hit',
|
||||||
'subscriptions_index_paid_in_period' => 'This field indicates when the subscription was last paid.',
|
'subscriptions_index_paid_in_period' => 'This field indicates when the subscription was last paid.',
|
||||||
'subscriptions_index_expected_in_period' => 'This field indicates for each subscription if and when the next subscription is expected to hit.',
|
'subscriptions_index_expected_in_period' => 'This field indicates for each subscription if and when the next subscription is expected to hit.',
|
||||||
|
|
||||||
// show bill
|
// show bill
|
||||||
'bills_show_billInfo' => 'This table shows some general information about this subscription.',
|
'bills_show_billInfo' => 'This table shows some general information about this subscription.',
|
||||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this subscription.',
|
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this subscription.',
|
||||||
'bills_show_billChart' => 'This chart shows the transactions linked to this subscription.',
|
'bills_show_billChart' => 'This chart shows the transactions linked to this subscription.',
|
||||||
'subscriptions_show_billInfo' => 'This table shows some general information about this subscription.',
|
'subscriptions_show_billInfo' => 'This table shows some general information about this subscription.',
|
||||||
'subscriptions_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this subscription.',
|
'subscriptions_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this subscription.',
|
||||||
'subscriptions_show_billChart' => 'This chart shows the transactions linked to this subscription.',
|
'subscriptions_show_billChart' => 'This chart shows the transactions linked to this subscription.',
|
||||||
|
|
||||||
// create bill
|
// create bill
|
||||||
'bills_create_intro' => 'Use subscriptions to track the amount of money you\'re due every period. Think about expenses like rent, insurance or mortgage payments.',
|
'bills_create_intro' => 'Use subscriptions to track the amount of money you\'re due every period. Think about expenses like rent, insurance or mortgage payments.',
|
||||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
||||||
// 'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
// 'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
||||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this subscription.',
|
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this subscription.',
|
||||||
'bills_create_repeat_freq_holder' => 'Most subscriptions repeat monthly, but you can set another frequency here.',
|
'bills_create_repeat_freq_holder' => 'Most subscriptions repeat monthly, but you can set another frequency here.',
|
||||||
'bills_create_skip_holder' => 'If a subscription repeats every 2 weeks, the "skip"-field should be set to "1" to skip every other week.',
|
'bills_create_skip_holder' => 'If a subscription repeats every 2 weeks, the "skip"-field should be set to "1" to skip every other week.',
|
||||||
|
|
||||||
// rules index
|
// rules index
|
||||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
||||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
||||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
'rules_index_new_rule' => 'Create as many rules as you like.',
|
||||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
||||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
||||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
||||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
||||||
|
|
||||||
// create rule:
|
// create rule:
|
||||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
||||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
||||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
||||||
'rules_create_actions' => 'Set as many actions as you like.',
|
'rules_create_actions' => 'Set as many actions as you like.',
|
||||||
|
|
||||||
// Ignore this comment
|
// Ignore this comment
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
||||||
|
|
||||||
// currencies
|
// currencies
|
||||||
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
||||||
'currencies_index_default' => 'Firefly III has one default currency.',
|
'currencies_index_default' => 'Firefly III has one default currency.',
|
||||||
'currencies_index_buttons' => 'Use these buttons to change the default currency or enable other currencies.',
|
'currencies_index_buttons' => 'Use these buttons to change the default currency or enable other currencies.',
|
||||||
|
|
||||||
// create currency
|
// create currency
|
||||||
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
||||||
];
|
];
|
||||||
// Ignore this comment
|
// Ignore this comment
|
||||||
|
Reference in New Issue
Block a user