Merge branch 'release/5.7.17'

This commit is contained in:
James Cole 2022-12-29 19:13:53 +01:00
commit 29bd3a2804
95 changed files with 721 additions and 302 deletions

View File

@ -85,7 +85,7 @@ class UpdateRequest extends FormRequest
'notes',
];
$this->floatFields = [
$this->floatFields = [ // not really floats, for validation.
'amount',
'foreign_amount',
];
@ -406,8 +406,7 @@ class UpdateRequest extends FormRequest
if (array_key_exists($fieldName, $transaction)) {
$value = $transaction[$fieldName];
if (is_float($value)) {
// TODO this effectively limits the max number of decimals in currencies to 14.
$current[$fieldName] = sprintf('%.14f', $value);
$current[$fieldName] = sprintf('%.24f', $value);
}
if (!is_float($value)) {
$current[$fieldName] = (string) $value;

View File

@ -46,9 +46,8 @@ class PreferenceStoreRequest extends FormRequest
if ('false' === $array['data']) {
$array['data'] = false;
}
// TODO remove float
if (is_numeric($array['data'])) {
$array['data'] = (float) $array['data'];
$array['data'] = (float) $array['data']; // intentional float.
}
return $array;

View File

@ -47,9 +47,8 @@ class PreferenceUpdateRequest extends FormRequest
if ('false' === $array['data']) {
$array['data'] = false;
}
// TODO remove float
if (is_numeric($array['data'])) {
$array['data'] = (float) $array['data'];
$array['data'] = (float) $array['data']; // intentional float.
}
return $array;

View File

@ -542,7 +542,7 @@ class TagController extends Controller
$result[] = [
'description' => $journal['description'],
'transaction_group_id' => $journal['transaction_group_id'],
'amount_float' => (float) $journal['amount'],
'amount_float' => (float) $journal['amount'], // intentional float.
'amount' => $journal['amount'],
'date' => $journal['date']->isoFormat($this->monthAndDayFormat),
'date_sort' => $journal['date']->format('Y-m-d'),

View File

@ -75,7 +75,7 @@ class BudgetFormUpdateRequest extends FormRequest
'active' => 'numeric|between:0,1',
'auto_budget_type' => 'numeric|integer|gte:0|lte:31',
'auto_budget_currency_id' => 'exists:transaction_currencies,id',
'auto_budget_amount' => 'min:0|max:1000000000|required_if:auto_budget_type,1|required_if:auto_budget_type,2',
'auto_budget_amount' => 'min:0|max:1000000000|required_if:auto_budget_type,1|required_if:auto_budget_type,2|numeric',
'auto_budget_period' => 'in:daily,weekly,monthly,quarterly,half_year,yearly',
];
}

View File

@ -99,7 +99,7 @@ class RecurrenceFormRequest extends FormRequest
];
// fill in foreign currency data
if (null !== $this->convertFloat('foreign_amount')) {
if (null !== $this->convertFloat('foreign_amount')) { // intentional float, used because it defaults to null.
$return['transactions'][0]['foreign_amount'] = $this->convertString('foreign_amount');
$return['transactions'][0]['foreign_currency_id'] = $this->convertInteger('foreign_currency_id');
}
@ -228,7 +228,7 @@ class RecurrenceFormRequest extends FormRequest
$rules['repetitions'] = 'required|numeric|between:0,254';
}
// if foreign amount, currency must be different.
if (null !== $this->convertFloat('foreign_amount')) {
if (null !== $this->convertFloat('foreign_amount')) { // intentional float, used because it defaults to null.
$rules['foreign_currency_id'] = 'exists:transaction_currencies,id|different:transaction_currency_id';
}

View File

@ -1,4 +1,5 @@
<?php
/**
* RuleFormRequest.php
* Copyright (c) 2019 james@firefly-iii.org
@ -66,17 +67,48 @@ class RuleFormRequest extends FormRequest
if (is_array($triggerData)) {
foreach ($triggerData as $trigger) {
$stopProcessing = $trigger['stop_processing'] ?? '0';
$return[] = [
$current = [
'type' => $trigger['type'] ?? 'invalid',
'value' => $trigger['value'] ?? '',
'stop_processing' => 1 === (int) $stopProcessing,
'stop_processing' => 1 === (int)$stopProcessing,
];
$current = self::replaceAmountTrigger($current);
$return[] = $current;
}
}
return $return;
}
/**
* @param array $array
* @return array
*/
public static function replaceAmountTrigger(array $array): array
{
// do some sneaky search and replace.
$amountFields = [
'amount_is',
'amount',
'amount_exactly',
'amount_less',
'amount_max',
'amount_more',
'amount_min',
'foreign_amount_is',
'foreign_amount',
'foreign_amount_less',
'foreign_amount_max',
'foreign_amount_more',
'foreign_amount_min',
];
if (in_array($array['type'], $amountFields, true) && '0' === $array['value']) {
$array['value'] = '0.00';
}
return $array;
}
/**
* @return array
*/
@ -90,7 +122,7 @@ class RuleFormRequest extends FormRequest
$return[] = [
'type' => $action['type'] ?? 'invalid',
'value' => $action['value'] ?? '',
'stop_processing' => 1 === (int) $stopProcessing,
'stop_processing' => 1 === (int)$stopProcessing,
];
}
}
@ -121,9 +153,9 @@ class RuleFormRequest extends FormRequest
'stop_processing' => 'boolean',
'rule_group_id' => 'required|belongsToUser:rule_groups',
'trigger' => 'required|in:store-journal,update-journal',
'triggers.*.type' => 'required|in:' . implode(',', $validTriggers),
'triggers.*.type' => 'required|in:'.implode(',', $validTriggers),
'triggers.*.value' => sprintf('required_if:triggers.*.type,%s|min:1|ruleTriggerValue', $contextTriggers),
'actions.*.type' => 'required|in:' . implode(',', $validActions),
'actions.*.type' => 'required|in:'.implode(',', $validActions),
'actions.*.value' => sprintf('required_if:actions.*.type,%s|min:0|max:255|ruleActionValue', $contextActions),
'strict' => 'in:0,1',
];
@ -132,7 +164,7 @@ class RuleFormRequest extends FormRequest
$rule = $this->route()->parameter('rule');
if (null !== $rule) {
$rules['title'] = 'required|between:1,100|uniqueObjectForUser:rules,title,' . $rule->id;
$rules['title'] = 'required|between:1,100|uniqueObjectForUser:rules,title,'.$rule->id;
}
return $rules;

View File

@ -71,21 +71,21 @@ class Amount
*/
public function formatFlat(string $symbol, int $decimalPlaces, string $amount, bool $coloured = null): string
{
$locale = app('steam')->getLocale();
$locale = app('steam')->getLocale();
$rounded = app('steam')->bcround($amount, $decimalPlaces);
$coloured = $coloured ?? true;
$fmt = new NumberFormatter($locale, NumberFormatter::CURRENCY);
$fmt->setSymbol(NumberFormatter::CURRENCY_SYMBOL, $symbol);
$fmt->setAttribute(NumberFormatter::MIN_FRACTION_DIGITS, $decimalPlaces);
$fmt->setAttribute(NumberFormatter::MAX_FRACTION_DIGITS, $decimalPlaces);
$result = $fmt->format((float)app('steam')->bcround($amount, $decimalPlaces)); // intentional float
$result = $fmt->format((float)$rounded); // intentional float
if (true === $coloured) {
if (1 === bccomp($amount, '0')) {
if (1 === bccomp($rounded, '0')) {
return sprintf('<span class="text-success">%s</span>', $result);
}
if (-1 === bccomp($amount, '0')) {
if (-1 === bccomp($rounded, '0')) {
return sprintf('<span class="text-danger">%s</span>', $result);
}

View File

@ -152,7 +152,7 @@ class FrontpageChartGenerator
$tempData[] = [
'name' => trans('firefly.no_category'),
'sum' => $currency['sum'],
'sum_float' => round((float) $currency['sum'], $currency['currency_decimal_places'] ?? 2),
'sum_float' => round((float) $currency['sum'], $currency['currency_decimal_places'] ?? 2), // intentional float
'currency_id' => (int) $currency['currency_id'],
];
}

View File

@ -130,8 +130,8 @@ trait ModelInformation
$billTriggers = ['currency_is', 'amount_more', 'amount_less', 'description_contains'];
$values = [
$bill->transactionCurrency()->first()->name,
round((float) $bill->amount_min, 24),
round((float) $bill->amount_max, 24),
$bill->amount_min,
$bill->amount_max,
$bill->name,
];
foreach ($billTriggers as $index => $trigger) {

View File

@ -27,6 +27,7 @@ use Carbon\Carbon;
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Exceptions\ValidationException;
use FireflyIII\Helpers\Help\HelpInterface;
use FireflyIII\Http\Requests\RuleFormRequest;
use FireflyIII\Http\Requests\TestRuleFormRequest;
use FireflyIII\Support\Binder\AccountList;
use FireflyIII\User;
@ -60,7 +61,7 @@ trait RequestInformation
/**
* Get a list of triggers.
*
* @param TestRuleFormRequest $request
* @param TestRuleFormRequest $request
*
* @return array
*/
@ -70,14 +71,15 @@ trait RequestInformation
$data = $request->get('triggers');
if (is_array($data)) {
foreach ($data as $triggerInfo) {
$triggers[] = [
$current = [
'type' => $triggerInfo['type'] ?? '',
'value' => $triggerInfo['value'] ?? '',
'stop_processing' => 1 === (int) ($triggerInfo['stop_processing'] ?? '0'),
'stop_processing' => 1 === (int)($triggerInfo['stop_processing'] ?? '0'),
];
$current = RuleFormRequest::replaceAmountTrigger($current);
$triggers[] = $current;
}
}
return $triggers;
}
@ -127,13 +129,13 @@ trait RequestInformation
*/
final protected function getSpecificPageName(): string // get request info
{
return null === RouteFacade::current()->parameter('objectType') ? '' : '_' . RouteFacade::current()->parameter('objectType');
return null === RouteFacade::current()->parameter('objectType') ? '' : '_'.RouteFacade::current()->parameter('objectType');
}
/**
* Check if date is outside session range.
*
* @param Carbon $date
* @param Carbon $date
*
* @return bool
*
@ -159,7 +161,7 @@ trait RequestInformation
/**
* Parses attributes from URL
*
* @param array $attributes
* @param array $attributes
*
* @return array
*/
@ -189,9 +191,9 @@ trait RequestInformation
/**
* Validate users new password.
*
* @param User $user
* @param string $current
* @param string $new
* @param User $user
* @param string $current
* @param string $new
*
* @return bool
*
@ -200,11 +202,11 @@ trait RequestInformation
final protected function validatePassword(User $user, string $current, string $new): bool //get request info
{
if (!Hash::check($current, $user->password)) {
throw new ValidationException((string) trans('firefly.invalid_current_password'));
throw new ValidationException((string)trans('firefly.invalid_current_password'));
}
if ($current === $new) {
throw new ValidationException((string) trans('firefly.should_change'));
throw new ValidationException((string)trans('firefly.should_change'));
}
return true;
@ -213,7 +215,7 @@ trait RequestInformation
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @param array $data
*
* @return ValidatorContract
* @codeCoverageIgnore

View File

@ -105,9 +105,19 @@ class Steam
*/
public function bcround(?string $number, int $precision = 0): string
{
if(null === $number) {
return '0';
}
if('' === trim($number)) {
return '0';
}
// if the number contains "E", it's in scientific notation, so we need to convert it to a normal number first.
if(false !== stripos($number,'e')) {
$number = sprintf('%.24f',$number);
}
Log::debug(sprintf('Trying bcround("%s",%d)', $number, $precision));
if (str_contains($number, '.')) {
if ($number[0] !== '-') {
return bcadd($number, '0.'.str_repeat('0', $precision).'5', $precision);
@ -580,8 +590,10 @@ class Steam
if ($mantis < 0) {
$post += abs((int)$mantis);
}
// TODO careless float could break financial math.
return number_format((float)$value, $post, '.', '');
}
// TODO careless float could break financial math.
return number_format((float)$value, 0, '.', '');
}

View File

@ -88,13 +88,13 @@ class UpdatePiggybank implements ActionInterface
if ((int)$source->account_id === (int)$piggyBank->account_id) {
Log::debug('Piggy bank account is linked to source, so remove amount from piggy bank.');
$this->removeAmount($journal, $piggyBank, $destination->amount);
$this->removeAmount($piggyBank, $journalObj, $destination->amount);
return true;
}
if ((int)$destination->account_id === (int)$piggyBank->account_id) {
Log::debug('Piggy bank account is linked to source, so add amount to piggy bank.');
$this->addAmount($journal, $piggyBank, $destination->amount);
$this->addAmount($piggyBank, $journalObj, $destination->amount);
return true;
}
@ -106,7 +106,7 @@ class UpdatePiggybank implements ActionInterface
)
);
return true;
return false;
}
/**
@ -140,14 +140,14 @@ class UpdatePiggybank implements ActionInterface
// if amount is zero, stop.
if (0 === bccomp('0', $amount)) {
Log::warning('Amount left is zero, stop.');
app('log')->warning('Amount left is zero, stop.');
return;
}
// make sure we can remove amount:
if (false === $repository->canRemoveAmount($piggyBank, $amount)) {
Log::warning(sprintf('Cannot remove %s from piggy bank.', $amount));
app('log')->warning(sprintf('Cannot remove %s from piggy bank.', $amount));
return;
}
@ -177,14 +177,14 @@ class UpdatePiggybank implements ActionInterface
// if amount is zero, stop.
if (0 === bccomp('0', $amount)) {
Log::warning('Amount left is zero, stop.');
app('log')->warning('Amount left is zero, stop.');
return;
}
// make sure we can add amount:
if (false === $repository->canAddAmount($piggyBank, $amount)) {
Log::warning(sprintf('Cannot add %s to piggy bank.', $amount));
app('log')->warning(sprintf('Cannot add %s to piggy bank.', $amount));
return;
}

View File

@ -76,7 +76,7 @@ class AccountTransformer extends AbstractTransformer
[$openingBalance, $openingBalanceDate] = $this->getOpeningBalance($account, $accountType);
[$interest, $interestPeriod] = $this->getInterest($account, $accountType);
$openingBalance = number_format((float) $openingBalance, $decimalPlaces, '.', '');
$openingBalance = app('steam')->bcround($openingBalance, $decimalPlaces);
$includeNetWorth = '0' !== $this->repository->getMetaValue($account, 'include_net_worth');
$longitude = null;
$latitude = null;
@ -107,7 +107,7 @@ class AccountTransformer extends AbstractTransformer
'currency_code' => $currencyCode,
'currency_symbol' => $currencySymbol,
'currency_decimal_places' => $decimalPlaces,
'current_balance' => number_format((float) app('steam')->balance($account, $date), $decimalPlaces, '.', ''),
'current_balance' => app('steam')->bcround(app('steam')->balance($account, $date), $decimalPlaces),
'current_balance_date' => $date->toAtomString(),
'notes' => $this->repository->getNoteText($account),
'monthly_payment_date' => $monthlyPaymentDate,
@ -115,7 +115,7 @@ class AccountTransformer extends AbstractTransformer
'account_number' => $this->repository->getMetaValue($account, 'account_number'),
'iban' => '' === $account->iban ? null : $account->iban,
'bic' => $this->repository->getMetaValue($account, 'BIC'),
'virtual_balance' => number_format((float) $account->virtual_balance, $decimalPlaces, '.', ''),
'virtual_balance' => app('steam')->bcround($account->virtual_balance, $decimalPlaces),
'opening_balance' => $openingBalance,
'opening_balance_date' => $openingBalanceDate,
'liability_type' => $liabilityType,

View File

@ -69,7 +69,7 @@ class AvailableBudgetTransformer extends AbstractTransformer
'currency_code' => $currency->code,
'currency_symbol' => $currency->symbol,
'currency_decimal_places' => (int) $currency->decimal_places,
'amount' => number_format((float) $availableBudget->amount, $currency->decimal_places, '.', ''),
'amount' => app('steam')->bcround($availableBudget->amount, $currency->decimal_places),
'start' => $availableBudget->start_date->toAtomString(),
'end' => $availableBudget->end_date->endOfDay()->toAtomString(),
'spent_in_budgets' => [],

View File

@ -115,8 +115,8 @@ class BillTransformer extends AbstractTransformer
'currency_symbol' => $currency->symbol,
'currency_decimal_places' => (int) $currency->decimal_places,
'name' => $bill->name,
'amount_min' => number_format((float) $bill->amount_min, $currency->decimal_places, '.', ''),
'amount_max' => number_format((float) $bill->amount_max, $currency->decimal_places, '.', ''),
'amount_min' => app('steam')->bcround($bill->amount_min, $currency->decimal_places),
'amount_max' => app('steam')->bcround($bill->amount_max, $currency->decimal_places),
'date' => $bill->date->toAtomString(),
'end_date' => $bill->end_date?->toAtomString(),
'extension_date' => $bill->extension_date?->toAtomString(),

View File

@ -80,7 +80,7 @@ class BudgetLimitTransformer extends AbstractTransformer
$currencySymbol = $currency->symbol;
$currencyDecimalPlaces = $currency->decimal_places;
}
$amount = number_format((float) $amount, $currencyDecimalPlaces, '.', '');
$amount = app('steam')->bcround($amount, $currencyDecimalPlaces);
return [
'id' => (string) $budgetLimit->id,

View File

@ -84,7 +84,7 @@ class BudgetTransformer extends AbstractTransformer
$abCurrencyId = (string) $autoBudget->transactionCurrency->id;
$abCurrencyCode = $autoBudget->transactionCurrency->code;
$abType = $types[$autoBudget->auto_budget_type];
$abAmount = number_format((float) $autoBudget->amount, $autoBudget->transactionCurrency->decimal_places, '.', '');
$abAmount = app('steam')->bcround($autoBudget->amount, $autoBudget->transactionCurrency->decimal_places);
$abPeriod = $autoBudget->period;
}
@ -120,7 +120,7 @@ class BudgetTransformer extends AbstractTransformer
{
$return = [];
foreach ($array as $data) {
$data['sum'] = number_format((float) $data['sum'], (int) $data['currency_decimal_places'], '.', '');
$data['sum'] = app('steam')->bcround($data['sum'], (int) $data['currency_decimal_places']);
$return[] = $data;
}

View File

@ -95,7 +95,7 @@ class CategoryTransformer extends AbstractTransformer
{
$return = [];
foreach ($array as $data) {
$data['sum'] = number_format((float) $data['sum'], (int) $data['currency_decimal_places'], '.', '');
$data['sum'] = app('steam')->bcround($data['sum'], (int) $data['currency_decimal_places']);
$return[] = $data;
}

View File

@ -83,7 +83,7 @@ class PiggyBankEventTransformer extends AbstractTransformer
'id' => (string) $event->id,
'created_at' => $event->created_at->toAtomString(),
'updated_at' => $event->updated_at->toAtomString(),
'amount' => number_format((float) $event->amount, $currency->decimal_places, '.', ''),
'amount' => app('steam')->bcround($event->amount, $currency->decimal_places),
'currency_id' => (string) $currency->id,
'currency_code' => $currency->code,
'currency_symbol' => $currency->symbol,

View File

@ -53,7 +53,7 @@ class PiggyBankTransformer extends AbstractTransformer
/**
* Transform the piggy bank.
*
* @param PiggyBank $piggyBank
* @param PiggyBank $piggyBank
*
* @return array
* @throws \FireflyIII\Exceptions\FireflyException
@ -81,61 +81,58 @@ class PiggyBankTransformer extends AbstractTransformer
/** @var ObjectGroup $objectGroup */
$objectGroup = $piggyBank->objectGroups->first();
if (null !== $objectGroup) {
$objectGroupId = (int) $objectGroup->id;
$objectGroupOrder = (int) $objectGroup->order;
$objectGroupId = (int)$objectGroup->id;
$objectGroupOrder = (int)$objectGroup->order;
$objectGroupTitle = $objectGroup->title;
}
// get currently saved amount:
$currentAmountStr = $this->piggyRepos->getCurrentAmount($piggyBank);
$currentAmount = number_format((float) $currentAmountStr, $currency->decimal_places, '.', '');
$currentAmount = app('steam')->bcround($this->piggyRepos->getCurrentAmount($piggyBank), $currency->decimal_places);
// Amounts, depending on 0.0 state of target amount
$percentage = null;
$targetAmountString = null;
$leftToSaveString = null;
$savePerMonth = null;
if (0.000 !== (float) $piggyBank->targetamount) {
$leftToSave = bcsub($piggyBank->targetamount, $currentAmountStr);
$targetAmount = (string) $piggyBank->targetamount;
$targetAmount = 1 === bccomp('0.01', $targetAmount) ? '0.01' : $targetAmount;
$percentage = (int) (0 !== bccomp('0', $currentAmountStr) ? $currentAmountStr / $targetAmount * 100 : 0);
$targetAmountString = number_format((float) $targetAmount, $currency->decimal_places, '.', '');
$leftToSaveString = number_format((float) $leftToSave, $currency->decimal_places, '.', '');
$savePerMonth = number_format((float) $this->piggyRepos->getSuggestedMonthlyAmount($piggyBank), $currency->decimal_places, '.', '');
$percentage = null;
$targetAmount = $piggyBank->targetamount;
$leftToSave = null;
$savePerMonth = null;
if (0 !== bccomp($targetAmount, '0')) { // target amount is not 0.00
$leftToSave = bcsub($piggyBank->targetamount, $currentAmount);
$percentage = (int)bcmul(bcdiv($currentAmount, $targetAmount), '100');
$targetAmount = app('steam')->bcround($targetAmount, $currency->decimal_places);
$leftToSave = app('steam')->bcround($leftToSave, $currency->decimal_places);
$savePerMonth = app('steam')->bcround($this->piggyRepos->getSuggestedMonthlyAmount($piggyBank), $currency->decimal_places);
}
$startDate = $piggyBank->startdate?->toAtomString();
$targetDate = $piggyBank->targetdate?->toAtomString();
return [
'id' => (string) $piggyBank->id,
'id' => (string)$piggyBank->id,
'created_at' => $piggyBank->created_at->toAtomString(),
'updated_at' => $piggyBank->updated_at->toAtomString(),
'account_id' => (string) $piggyBank->account_id,
'account_id' => (string)$piggyBank->account_id,
'account_name' => $piggyBank->account->name,
'name' => $piggyBank->name,
'currency_id' => (string) $currency->id,
'currency_id' => (string)$currency->id,
'currency_code' => $currency->code,
'currency_symbol' => $currency->symbol,
'currency_decimal_places' => (int) $currency->decimal_places,
'target_amount' => $targetAmountString,
'currency_decimal_places' => (int)$currency->decimal_places,
'target_amount' => $targetAmount,
'percentage' => $percentage,
'current_amount' => $currentAmount,
'left_to_save' => $leftToSaveString,
'left_to_save' => $leftToSave,
'save_per_month' => $savePerMonth,
'start_date' => $startDate,
'target_date' => $targetDate,
'order' => (int) $piggyBank->order,
'order' => (int)$piggyBank->order,
'active' => true,
'notes' => $notes,
'object_group_id' => $objectGroupId ? (string) $objectGroupId : null,
'object_group_id' => $objectGroupId ? (string)$objectGroupId : null,
'object_group_order' => $objectGroupOrder,
'object_group_title' => $objectGroupTitle,
'links' => [
[
'rel' => 'self',
'uri' => '/piggy_banks/' . $piggyBank->id,
'uri' => '/piggy_banks/'.$piggyBank->id,
],
],
];

View File

@ -198,10 +198,10 @@ class RecurrenceTransformer extends AbstractTransformer
$destinationType = $destinationAccount->accountType->type;
$destinationIban = $destinationAccount->iban;
}
$amount = number_format((float) $transaction->amount, $transaction->transactionCurrency->decimal_places, '.', '');
$amount = app('steam')->bcround($transaction->amount, $transaction->transactionCurrency->decimal_places);
$foreignAmount = null;
if (null !== $transaction->foreign_currency_id && null !== $transaction->foreign_amount) {
$foreignAmount = number_format((float) $transaction->foreign_amount, $foreignCurrencyDp, '.', '');
$foreignAmount = app('steam')->bcround($transaction->foreign_amount, $foreignCurrencyDp);
}
$transactionArray = [
'currency_id' => (string) $transaction->transaction_currency_id,

View File

@ -363,7 +363,7 @@ class TransactionGroupTransformer extends AbstractTransformer
$bill = $this->getBill($journal->bill);
if (null !== $foreignAmount && null !== $foreignCurrency) {
$foreignAmount = number_format((float) $foreignAmount, $foreignCurrency['decimal_places'] ?? 0, '.', '');
$foreignAmount = app('steam')->bcround($foreignAmount, $foreignCurrency['decimal_places'] ?? 0);
}
$longitude = null;
@ -393,7 +393,7 @@ class TransactionGroupTransformer extends AbstractTransformer
'foreign_currency_symbol' => $foreignCurrency['symbol'],
'foreign_currency_decimal_places' => $foreignCurrency['decimal_places'],
'amount' => number_format((float) $amount, $currency->decimal_places, '.', ''),
'amount' => app('steam')->bcround($amount, $currency->decimal_places),
'foreign_amount' => $foreignAmount,
'description' => $journal->description,
@ -461,7 +461,7 @@ class TransactionGroupTransformer extends AbstractTransformer
{
$result = $journal->transactions->first(
static function (Transaction $transaction) {
return (float) $transaction->amount < 0;
return (float) $transaction->amount < 0; // lame but it works.
}
);
if (null === $result) {
@ -481,7 +481,7 @@ class TransactionGroupTransformer extends AbstractTransformer
{
$result = $journal->transactions->first(
static function (Transaction $transaction) {
return (float) $transaction->amount > 0;
return (float) $transaction->amount > 0; // lame but it works
}
);
if (null === $result) {

View File

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 5.7.17 - 2022-12-30
### Fixed
- [Issue 6742](https://github.com/firefly-iii/firefly-iii/issues/6742) Error when a rule tries to add or remove an amount from a piggy bank
- [Issue 6743](https://github.com/firefly-iii/firefly-iii/issues/6743) Error when opening piggy bank overview
- [Issue 6753](https://github.com/firefly-iii/firefly-iii/issues/6753) Rules are not finding any transactions with trigger 'Amount is greater than 0'
## 5.7.16 - 2022-12-25
### Added

263
composer.lock generated
View File

@ -5028,42 +5028,53 @@
},
{
"name": "ramsey/collection",
"version": "1.2.2",
"version": "1.3.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/collection.git",
"reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
"reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
"reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
"url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
"reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
"shasum": ""
},
"require": {
"php": "^7.3 || ^8",
"php": "^7.4 || ^8.0",
"symfony/polyfill-php81": "^1.23"
},
"require-dev": {
"captainhook/captainhook": "^5.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"ergebnis/composer-normalize": "^2.6",
"fakerphp/faker": "^1.5",
"hamcrest/hamcrest-php": "^2",
"jangregor/phpstan-prophecy": "^0.8",
"mockery/mockery": "^1.3",
"captainhook/plugin-composer": "^5.3",
"ergebnis/composer-normalize": "^2.28.3",
"fakerphp/faker": "^1.21",
"hamcrest/hamcrest-php": "^2.0",
"jangregor/phpstan-prophecy": "^1.0",
"mockery/mockery": "^1.5",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcsstandards/phpcsutils": "^1.0.0-rc1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^0.12.32",
"phpstan/phpstan-mockery": "^0.12.5",
"phpstan/phpstan-phpunit": "^0.12.11",
"phpunit/phpunit": "^8.5 || ^9",
"psy/psysh": "^0.10.4",
"slevomat/coding-standard": "^6.3",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.4"
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.18.4",
"ramsey/coding-standard": "^2.0.3",
"ramsey/conventional-commits": "^1.3",
"vimeo/psalm": "^5.4"
},
"type": "library",
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
}
},
"autoload": {
"psr-4": {
"Ramsey\\Collection\\": "src/"
@ -5091,7 +5102,7 @@
],
"support": {
"issues": "https://github.com/ramsey/collection/issues",
"source": "https://github.com/ramsey/collection/tree/1.2.2"
"source": "https://github.com/ramsey/collection/tree/1.3.0"
},
"funding": [
{
@ -5103,7 +5114,7 @@
"type": "tidelift"
}
],
"time": "2021-10-10T03:01:02+00:00"
"time": "2022-12-27T19:12:24+00:00"
},
{
"name": "ramsey/uuid",
@ -5401,16 +5412,16 @@
},
{
"name": "spatie/flare-client-php",
"version": "1.3.1",
"version": "1.3.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
"reference": "ebb9ae0509b75e02f128b39537eb9a3ef5ce18e8"
"reference": "609903bd154ba3d71f5e23a91c3b431fa8f71868"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/flare-client-php/zipball/ebb9ae0509b75e02f128b39537eb9a3ef5ce18e8",
"reference": "ebb9ae0509b75e02f128b39537eb9a3ef5ce18e8",
"url": "https://api.github.com/repos/spatie/flare-client-php/zipball/609903bd154ba3d71f5e23a91c3b431fa8f71868",
"reference": "609903bd154ba3d71f5e23a91c3b431fa8f71868",
"shasum": ""
},
"require": {
@ -5458,7 +5469,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
"source": "https://github.com/spatie/flare-client-php/tree/1.3.1"
"source": "https://github.com/spatie/flare-client-php/tree/1.3.2"
},
"funding": [
{
@ -5466,7 +5477,7 @@
"type": "github"
}
],
"time": "2022-11-16T08:30:20+00:00"
"time": "2022-12-26T14:36:46+00:00"
},
{
"name": "spatie/ignition",
@ -5545,16 +5556,16 @@
},
{
"name": "spatie/laravel-ignition",
"version": "1.6.2",
"version": "1.6.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ignition.git",
"reference": "d6e1e1ad93abe280abf41c33f8ea7647dfc0c233"
"reference": "2db918babd96f87b73fc26e4195f5a19328dd123"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/d6e1e1ad93abe280abf41c33f8ea7647dfc0c233",
"reference": "d6e1e1ad93abe280abf41c33f8ea7647dfc0c233",
"url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/2db918babd96f87b73fc26e4195f5a19328dd123",
"reference": "2db918babd96f87b73fc26e4195f5a19328dd123",
"shasum": ""
},
"require": {
@ -5631,7 +5642,7 @@
"type": "github"
}
],
"time": "2022-12-08T15:31:38+00:00"
"time": "2022-12-26T15:13:03+00:00"
},
{
"name": "stella-maris/clock",
@ -5682,16 +5693,16 @@
},
{
"name": "symfony/console",
"version": "v6.0.16",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
"reference": "be294423f337dda97c810733138c0caec1bb0575"
"reference": "2ab307342a7233b9a260edd5ef94087aaca57d18"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/be294423f337dda97c810733138c0caec1bb0575",
"reference": "be294423f337dda97c810733138c0caec1bb0575",
"url": "https://api.github.com/repos/symfony/console/zipball/2ab307342a7233b9a260edd5ef94087aaca57d18",
"reference": "2ab307342a7233b9a260edd5ef94087aaca57d18",
"shasum": ""
},
"require": {
@ -5757,7 +5768,7 @@
"terminal"
],
"support": {
"source": "https://github.com/symfony/console/tree/v6.0.16"
"source": "https://github.com/symfony/console/tree/v6.0.17"
},
"funding": [
{
@ -5773,20 +5784,20 @@
"type": "tidelift"
}
],
"time": "2022-11-25T18:58:46+00:00"
"time": "2022-12-28T14:21:34+00:00"
},
{
"name": "symfony/css-selector",
"version": "v6.0.11",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
"reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9"
"reference": "3e526b732295b5d4c16c38d557b74ba8498a92b4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/ab2746acddc4f03a7234c8441822ac5d5c63efe9",
"reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/3e526b732295b5d4c16c38d557b74ba8498a92b4",
"reference": "3e526b732295b5d4c16c38d557b74ba8498a92b4",
"shasum": ""
},
"require": {
@ -5822,7 +5833,7 @@
"description": "Converts CSS selectors to XPath expressions",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/css-selector/tree/v6.0.11"
"source": "https://github.com/symfony/css-selector/tree/v6.0.17"
},
"funding": [
{
@ -5838,7 +5849,7 @@
"type": "tidelift"
}
],
"time": "2022-06-27T17:10:44+00:00"
"time": "2022-12-28T14:21:34+00:00"
},
{
"name": "symfony/deprecation-contracts",
@ -5909,16 +5920,16 @@
},
{
"name": "symfony/error-handler",
"version": "v6.0.15",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
"reference": "f000c166cb3ee32c4c822831a79260a135cd59b5"
"reference": "1113c4bcf3bc77a9c79562543317479c90ba7b82"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/f000c166cb3ee32c4c822831a79260a135cd59b5",
"reference": "f000c166cb3ee32c4c822831a79260a135cd59b5",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/1113c4bcf3bc77a9c79562543317479c90ba7b82",
"reference": "1113c4bcf3bc77a9c79562543317479c90ba7b82",
"shasum": ""
},
"require": {
@ -5960,7 +5971,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/error-handler/tree/v6.0.15"
"source": "https://github.com/symfony/error-handler/tree/v6.0.17"
},
"funding": [
{
@ -5976,20 +5987,20 @@
"type": "tidelift"
}
],
"time": "2022-10-28T16:22:58+00:00"
"time": "2022-12-14T15:52:41+00:00"
},
{
"name": "symfony/event-dispatcher",
"version": "v6.0.9",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
"reference": "5c85b58422865d42c6eb46f7693339056db098a8"
"reference": "42b3985aa07837c9df36013ec5b965e9f2d480bc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5c85b58422865d42c6eb46f7693339056db098a8",
"reference": "5c85b58422865d42c6eb46f7693339056db098a8",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/42b3985aa07837c9df36013ec5b965e9f2d480bc",
"reference": "42b3985aa07837c9df36013ec5b965e9f2d480bc",
"shasum": ""
},
"require": {
@ -6043,7 +6054,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/event-dispatcher/tree/v6.0.9"
"source": "https://github.com/symfony/event-dispatcher/tree/v6.0.17"
},
"funding": [
{
@ -6059,7 +6070,7 @@
"type": "tidelift"
}
],
"time": "2022-05-05T16:45:52+00:00"
"time": "2022-12-14T15:52:41+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
@ -6142,16 +6153,16 @@
},
{
"name": "symfony/finder",
"version": "v6.0.11",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
"reference": "09cb683ba5720385ea6966e5e06be2a34f2568b1"
"reference": "d467d625fc88f7cebf96f495e588a7196a669db1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/09cb683ba5720385ea6966e5e06be2a34f2568b1",
"reference": "09cb683ba5720385ea6966e5e06be2a34f2568b1",
"url": "https://api.github.com/repos/symfony/finder/zipball/d467d625fc88f7cebf96f495e588a7196a669db1",
"reference": "d467d625fc88f7cebf96f495e588a7196a669db1",
"shasum": ""
},
"require": {
@ -6183,7 +6194,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/finder/tree/v6.0.11"
"source": "https://github.com/symfony/finder/tree/v6.0.17"
},
"funding": [
{
@ -6199,20 +6210,20 @@
"type": "tidelift"
}
],
"time": "2022-07-29T07:39:48+00:00"
"time": "2022-12-22T17:53:58+00:00"
},
{
"name": "symfony/http-client",
"version": "v6.0.16",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
"reference": "5db1221826d5f841f443d434358d5f82c862c5a9"
"reference": "d104286d135d29a17ead777888087e7f0fd11771"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-client/zipball/5db1221826d5f841f443d434358d5f82c862c5a9",
"reference": "5db1221826d5f841f443d434358d5f82c862c5a9",
"url": "https://api.github.com/repos/symfony/http-client/zipball/d104286d135d29a17ead777888087e7f0fd11771",
"reference": "d104286d135d29a17ead777888087e7f0fd11771",
"shasum": ""
},
"require": {
@ -6267,7 +6278,7 @@
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-client/tree/v6.0.16"
"source": "https://github.com/symfony/http-client/tree/v6.0.17"
},
"funding": [
{
@ -6283,7 +6294,7 @@
"type": "tidelift"
}
],
"time": "2022-11-14T10:09:52+00:00"
"time": "2022-12-14T15:52:41+00:00"
},
{
"name": "symfony/http-client-contracts",
@ -6365,16 +6376,16 @@
},
{
"name": "symfony/http-foundation",
"version": "v6.0.16",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "86eec2c66d00a2dd03d84352cd10b12df73101ec"
"reference": "22fe17e40b0481d39212e7165e004eb26422085d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/86eec2c66d00a2dd03d84352cd10b12df73101ec",
"reference": "86eec2c66d00a2dd03d84352cd10b12df73101ec",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/22fe17e40b0481d39212e7165e004eb26422085d",
"reference": "22fe17e40b0481d39212e7165e004eb26422085d",
"shasum": ""
},
"require": {
@ -6420,7 +6431,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-foundation/tree/v6.0.16"
"source": "https://github.com/symfony/http-foundation/tree/v6.0.17"
},
"funding": [
{
@ -6436,20 +6447,20 @@
"type": "tidelift"
}
],
"time": "2022-11-07T08:07:05+00:00"
"time": "2022-12-14T15:52:41+00:00"
},
{
"name": "symfony/http-kernel",
"version": "v6.0.16",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "8ba1344821807ad51f230f0d01e0fa8f366e4abb"
"reference": "ce1a8d268d9bc32b806f3afa33e157b1df79214c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/8ba1344821807ad51f230f0d01e0fa8f366e4abb",
"reference": "8ba1344821807ad51f230f0d01e0fa8f366e4abb",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/ce1a8d268d9bc32b806f3afa33e157b1df79214c",
"reference": "ce1a8d268d9bc32b806f3afa33e157b1df79214c",
"shasum": ""
},
"require": {
@ -6529,7 +6540,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-kernel/tree/v6.0.16"
"source": "https://github.com/symfony/http-kernel/tree/v6.0.17"
},
"funding": [
{
@ -6545,20 +6556,20 @@
"type": "tidelift"
}
],
"time": "2022-11-28T18:15:44+00:00"
"time": "2022-12-28T14:55:51+00:00"
},
{
"name": "symfony/mailer",
"version": "v6.0.16",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
"reference": "aa47b34ab09fa03106d9e156632e4c6176b962da"
"reference": "0d4562cd13f1e5b78b578120ae5cbd5527ec1534"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/aa47b34ab09fa03106d9e156632e4c6176b962da",
"reference": "aa47b34ab09fa03106d9e156632e4c6176b962da",
"url": "https://api.github.com/repos/symfony/mailer/zipball/0d4562cd13f1e5b78b578120ae5cbd5527ec1534",
"reference": "0d4562cd13f1e5b78b578120ae5cbd5527ec1534",
"shasum": ""
},
"require": {
@ -6603,7 +6614,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/mailer/tree/v6.0.16"
"source": "https://github.com/symfony/mailer/tree/v6.0.17"
},
"funding": [
{
@ -6619,7 +6630,7 @@
"type": "tidelift"
}
],
"time": "2022-11-04T07:39:59+00:00"
"time": "2022-12-14T15:52:41+00:00"
},
{
"name": "symfony/mailgun-mailer",
@ -6688,16 +6699,16 @@
},
{
"name": "symfony/mime",
"version": "v6.0.16",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
"reference": "ad9878bede5707cdf5ff7f5c86d82a921bbbfe1c"
"reference": "3e6a7ba15997020778312ed576ad01ab60dc2336"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/mime/zipball/ad9878bede5707cdf5ff7f5c86d82a921bbbfe1c",
"reference": "ad9878bede5707cdf5ff7f5c86d82a921bbbfe1c",
"url": "https://api.github.com/repos/symfony/mime/zipball/3e6a7ba15997020778312ed576ad01ab60dc2336",
"reference": "3e6a7ba15997020778312ed576ad01ab60dc2336",
"shasum": ""
},
"require": {
@ -6750,7 +6761,7 @@
"mime-type"
],
"support": {
"source": "https://github.com/symfony/mime/tree/v6.0.16"
"source": "https://github.com/symfony/mime/tree/v6.0.17"
},
"funding": [
{
@ -6766,7 +6777,7 @@
"type": "tidelift"
}
],
"time": "2022-11-28T12:25:56+00:00"
"time": "2022-12-14T16:19:02+00:00"
},
{
"name": "symfony/polyfill-ctype",
@ -7656,16 +7667,16 @@
},
{
"name": "symfony/routing",
"version": "v6.0.15",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
"reference": "3b7384fad32c6d0e1919b5bd18a69fbcfc383508"
"reference": "61687a0aa80f6807c52e116ee64072f6ec53780c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/3b7384fad32c6d0e1919b5bd18a69fbcfc383508",
"reference": "3b7384fad32c6d0e1919b5bd18a69fbcfc383508",
"url": "https://api.github.com/repos/symfony/routing/zipball/61687a0aa80f6807c52e116ee64072f6ec53780c",
"reference": "61687a0aa80f6807c52e116ee64072f6ec53780c",
"shasum": ""
},
"require": {
@ -7678,7 +7689,7 @@
"symfony/yaml": "<5.4"
},
"require-dev": {
"doctrine/annotations": "^1.12",
"doctrine/annotations": "^1.12|^2",
"psr/log": "^1|^2|^3",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
@ -7724,7 +7735,7 @@
"url"
],
"support": {
"source": "https://github.com/symfony/routing/tree/v6.0.15"
"source": "https://github.com/symfony/routing/tree/v6.0.17"
},
"funding": [
{
@ -7740,7 +7751,7 @@
"type": "tidelift"
}
],
"time": "2022-10-18T13:11:57+00:00"
"time": "2022-12-20T16:40:04+00:00"
},
{
"name": "symfony/service-contracts",
@ -7826,16 +7837,16 @@
},
{
"name": "symfony/string",
"version": "v6.0.15",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
"reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771"
"reference": "3f57003dd8a67ed76870cc03092f8501db7788d9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/51ac0fa0ccf132a00519b87c97e8f775fa14e771",
"reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771",
"url": "https://api.github.com/repos/symfony/string/zipball/3f57003dd8a67ed76870cc03092f8501db7788d9",
"reference": "3f57003dd8a67ed76870cc03092f8501db7788d9",
"shasum": ""
},
"require": {
@ -7891,7 +7902,7 @@
"utf8"
],
"support": {
"source": "https://github.com/symfony/string/tree/v6.0.15"
"source": "https://github.com/symfony/string/tree/v6.0.17"
},
"funding": [
{
@ -7907,7 +7918,7 @@
"type": "tidelift"
}
],
"time": "2022-10-10T09:34:08+00:00"
"time": "2022-12-14T15:52:41+00:00"
},
{
"name": "symfony/translation",
@ -8158,16 +8169,16 @@
},
{
"name": "symfony/var-dumper",
"version": "v6.0.14",
"version": "v6.0.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "72af925ddd41ca0372d166d004bc38a00c4608cc"
"reference": "7d8e7c3c67c77790425ebe33691419dada154e65"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/72af925ddd41ca0372d166d004bc38a00c4608cc",
"reference": "72af925ddd41ca0372d166d004bc38a00c4608cc",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/7d8e7c3c67c77790425ebe33691419dada154e65",
"reference": "7d8e7c3c67c77790425ebe33691419dada154e65",
"shasum": ""
},
"require": {
@ -8226,7 +8237,7 @@
"dump"
],
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v6.0.14"
"source": "https://github.com/symfony/var-dumper/tree/v6.0.17"
},
"funding": [
{
@ -8242,7 +8253,7 @@
"type": "tidelift"
}
],
"time": "2022-10-07T08:02:12+00:00"
"time": "2022-12-22T17:53:58+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@ -8299,16 +8310,16 @@
},
{
"name": "twig/twig",
"version": "v3.4.3",
"version": "v3.5.0",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
"reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
"reference": "3ffcf4b7d890770466da3b2666f82ac054e7ec72"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
"reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
"url": "https://api.github.com/repos/twigphp/Twig/zipball/3ffcf4b7d890770466da3b2666f82ac054e7ec72",
"reference": "3ffcf4b7d890770466da3b2666f82ac054e7ec72",
"shasum": ""
},
"require": {
@ -8323,7 +8334,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.4-dev"
"dev-master": "3.5-dev"
}
},
"autoload": {
@ -8359,7 +8370,7 @@
],
"support": {
"issues": "https://github.com/twigphp/Twig/issues",
"source": "https://github.com/twigphp/Twig/tree/v3.4.3"
"source": "https://github.com/twigphp/Twig/tree/v3.5.0"
},
"funding": [
{
@ -8371,7 +8382,7 @@
"type": "tidelift"
}
],
"time": "2022-09-28T08:42:51+00:00"
"time": "2022-12-27T12:28:18+00:00"
},
{
"name": "vlucas/phpdotenv",
@ -9405,16 +9416,16 @@
},
{
"name": "phpunit/php-code-coverage",
"version": "9.2.22",
"version": "9.2.23",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "e4bf60d2220b4baaa0572986b5d69870226b06df"
"reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df",
"reference": "e4bf60d2220b4baaa0572986b5d69870226b06df",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
"reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
"shasum": ""
},
"require": {
@ -9470,7 +9481,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22"
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.23"
},
"funding": [
{
@ -9478,7 +9489,7 @@
"type": "github"
}
],
"time": "2022-12-18T16:40:55+00:00"
"time": "2022-12-28T12:41:10+00:00"
},
{
"name": "phpunit/php-file-iterator",

View File

@ -101,7 +101,7 @@ return [
'webhooks' => false,
'handle_debts' => true,
],
'version' => '5.7.16',
'version' => '5.7.17',
'api_version' => '1.5.6',
'db_version' => 18,

View File

@ -147,10 +147,10 @@ export default {
"rule_action_clear_category_choice": "Bereinige jede Kategorie",
"rule_action_set_budget_choice": "Setze Budget auf ..",
"rule_action_clear_budget_choice": "Alle Budgets leeren",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_add_tag_choice": "Schlagwort hinzuf\u00fcgen \u2026",
"rule_action_remove_tag_choice": "Schlagwort entfernen \u2026",
"rule_action_remove_all_tags_choice": "Alle Schlagw\u00f6rter entfernen",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_set_description_choice": "Beschreibung festlegen auf \u2026",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -135,9 +135,9 @@
"payment_date": "Zahlungsdatum",
"invoice_date": "Rechnungsdatum",
"internal_reference": "Interner Verweis",
"webhook_response": "Response",
"webhook_response": "Antwort",
"webhook_trigger": "Ausl\u00f6ser",
"webhook_delivery": "Delivery"
"webhook_delivery": "Zustellung"
},
"list": {
"active": "Aktiv?",

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Обновяване на правило ":rule" от низа за търсене',
'create_rule_from_query' => 'Създай ново правило от низа за търсене',
'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Прехвърляния',
'title_transfers' => 'Прехвърляния',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(без етикети)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Добавете пари към касичка ":name"',
'piggy_bank' => 'Касичка',
'new_piggy_bank' => 'Нова касичка',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Създай сметка',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Повтарящи се транзакции',
'repeat_until_in_past' => 'Тази повтаряща се транзакция спря да се повтаря на :date.',
'recurring_calendar_view' => 'Календар',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Трябва да използвате валидно ID на приходната сметка и / или валидно име на приходната сметка, за да продължите.',
'withdrawal_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Převody',
'title_transfers' => 'Převody',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(žádné štítky)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Vložit peníze do pokladničky ":name"',
'piggy_bank' => 'Pokladnička',
'new_piggy_bank' => 'Nová pokladnička',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Vytvořit účet',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Opakované transakce',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Kalendář',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Pro pokračování je potřeba získat platné ID zdrojového účtu a/nebo platný název zdrojového účtu.',
'withdrawal_dest_bad_data' => 'Při hledání ID „:id“ nebo jména „:name“ nelze najít platný cílový účet.',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Nelze najít platný zdrojový účet při hledání ID „:id“ nebo jména „:name“.',
'deposit_source_need_data' => 'Pro pokračování je potřeba získat platné ID zdrojového účtu a/nebo platný název zdrojového účtu.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Eksternt ID er ":value"',
'search_modifier_not_external_id_is' => 'Eksternt ID er ikke ":value"',
'search_modifier_no_external_url' => 'Transaktionen har ikke noget eksternt URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'Transaktionen har ikke noget eksternt URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Transaktionen skal have et (vilkårligt) eksternt URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'Transaktionen skal have et (vilkårligt) eksternt URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Intern reference er ":value"',
'search_modifier_not_internal_reference_is' => 'Intern reference er ikke ":value"',
'search_modifier_description_starts' => 'Beskrivelsen starter med ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Opdater regel ":rule" fra søgeforespørgsel',
'create_rule_from_query' => 'Opret ny regel fra søgeforespørgsel',
'rule_from_search_words' => 'Der er problemer med at håndtere forespørgslen ":string". Den foreslåede regel, der passer til din søgeforespørgsel, kan give forskellige resultater. Kontroller venligst omhyggeligt de udløsende hændelser.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Overførsler',
'title_transfers' => 'Overførsler',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(ingen mærker)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Tilføj penge til sparegrisen ":name"',
'piggy_bank' => 'Sparegris',
'new_piggy_bank' => 'Ny sparegris',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Opret ny regning',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Recurring transactions',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Det er nødvendigt at have et gyldigt destinationskonto ID og/eller gyldigt destinationskontonavn for at fortsætte.',
'withdrawal_dest_bad_data' => 'Kunne ikke finde en gyldig destinationskonto, ved søgning efter ID ":id" eller navn ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Kunne ikke finde en gyldig kildekonto ved søgning efter ID ":id" eller kontonavn ":name".',
'deposit_source_need_data' => 'Det er nødvendigt at have et gyldigt kildekonto ID og/eller gyldigt kildekontonavn for at fortsætte.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Externe ID lautet „:value”',
'search_modifier_not_external_id_is' => 'External ID ist nicht ":value"',
'search_modifier_no_external_url' => 'Die Buchung besitzt keine externe URL',
'search_modifier_no_external_id' => 'Die Transaktion hat keine externe ID',
'search_modifier_not_any_external_url' => 'Die Buchung besitzt keine externe URL',
'search_modifier_not_any_external_id' => 'Die Transaktion hat keine externe ID',
'search_modifier_any_external_url' => 'Die Buchung muss eine (beliebige) externe URL aufweisen',
'search_modifier_any_external_id' => 'Die Buchung muss eine (irgendeine) externe ID haben',
'search_modifier_not_no_external_url' => 'Die Buchung muss eine (beliebige) externe URL haben',
'search_modifier_not_no_external_id' => 'Die Buchung muss eine (irgendeine) externe ID haben',
'search_modifier_internal_reference_is' => 'Interne Referenz lautet „:value”',
'search_modifier_not_internal_reference_is' => 'Interne Referenz ist nicht ":value"',
'search_modifier_description_starts' => 'Beschreibung beginnt mit „:value”',
@ -444,7 +448,7 @@ return [
'search_modifier_date_on_month' => 'Buchung im Monat „:value”',
'search_modifier_not_date_on_month' => 'Buchung ist nicht im Monat ":value"',
'search_modifier_date_on_day' => 'Buchung erfolgt am :value Tag des Monats',
'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"',
'search_modifier_not_date_on_day' => 'Buchung erfolgte nicht am Tag des Monats ":value"',
'search_modifier_date_before_year' => 'Buchung ist vor dem oder im Jahr ":value"',
'search_modifier_date_before_month' => 'Buchung ist vor oder im Monat ":value"',
'search_modifier_date_before_day' => 'Buchung vor oder am ":value" Tag des Monats',
@ -455,7 +459,7 @@ return [
// new
'search_modifier_tag_is_not' => 'Kein Schlagwort lautet ":value"',
'search_modifier_not_tag_is_not' => 'Tag is ":value"',
'search_modifier_not_tag_is_not' => 'Schlagwort ist ":value"',
'search_modifier_account_is' => 'Beide Konten sind ":value"',
'search_modifier_not_account_is' => 'Beide Konten sind nicht ":value"',
'search_modifier_account_contains' => 'Beide Konten enthalten ":value"',
@ -513,30 +517,30 @@ return [
'search_modifier_has_no_attachments' => 'Transaktion hat keine Anhänge',
'search_modifier_not_has_no_attachments' => 'Buchung hat Anhänge',
'search_modifier_not_has_attachments' => 'Buchung hat keine Anhänge',
'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.',
'search_modifier_account_is_cash' => 'Eines der Konten ist das (Bar-)Konto.',
'search_modifier_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten.',
'search_modifier_journal_id' => 'Transaktions-Journal-ID ist ":value"',
'search_modifier_not_journal_id' => 'The journal ID is not ":value"',
'search_modifier_not_journal_id' => 'Die Journal-ID ist nicht ":value"',
'search_modifier_recurrence_id' => 'Die Dauerauftrags-ID ist ":value"',
'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"',
'search_modifier_not_recurrence_id' => 'Die Dauerauftrags-ID ist nicht ":value"',
'search_modifier_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) lautet ":value"',
'search_modifier_not_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist nicht ":value"',
'search_modifier_foreign_amount_less' => 'Der Fremdbetrag ist geringer als ":value"',
'search_modifier_not_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist kleiner als ":value"',
'search_modifier_not_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist größer als ":value"',
'search_modifier_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist höher als ":value"',
'search_modifier_exists' => 'Transaction exists (any transaction)',
'search_modifier_not_exists' => 'Transaction does not exist (no transaction)',
'search_modifier_exists' => 'Buchung vorhanden (beliebige Buchung)',
'search_modifier_not_exists' => 'Buchung existiert nicht (keine Buchung)',
// date fields
'search_modifier_interest_date_on' => 'Transaktion Zinstermin ist am ":value"',
'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"',
'search_modifier_not_interest_date_on' => 'Bungungs-Zinstermin ist nicht am ":value"',
'search_modifier_interest_date_on_year' => 'Transaktion Zinstermin ist im Jahr ":value"',
'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"',
'search_modifier_not_interest_date_on_year' => 'Buchungs-Zinstermin ist nicht im Jahr ":value"',
'search_modifier_interest_date_on_month' => 'Transaktion Zinstermin ist im Monat ":value"',
'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"',
'search_modifier_not_interest_date_on_month' => 'Buchungs-Zinstermin ist nicht im Monat ":value"',
'search_modifier_interest_date_on_day' => 'Transaktion Zinstermin ist am Tag des Monats ":value"',
'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"',
'search_modifier_not_interest_date_on_day' => 'Buchungs-Zinstermin ist nicht am Tag des Monats ":value"',
'search_modifier_interest_date_before_year' => 'Transaktion Zinstermin ist vor dem oder im Jahr ":value"',
'search_modifier_interest_date_before_month' => 'Transaktion Zinstermin ist vor dem oder im Monat ":value"',
'search_modifier_interest_date_before_day' => 'Transaktion Zinstermin ist vor dem oder am Tag des Monats ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Notizen des Anhangs enthalten nicht ":value"',
'search_modifier_not_attachment_notes_starts' => 'Notizen des Anhangs beginnen nicht mit ":value"',
'search_modifier_not_attachment_notes_ends' => 'Notizen des Anhangs enden nicht mit ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT ist ":value"',
'update_rule_from_query' => 'Regel „:rule” aus Suchanfrage aktualisieren',
'create_rule_from_query' => 'Neue Regel aus Suchanfrage erstellen',
'rule_from_search_words' => 'Die Regel-Modul hat Schwierigkeiten „:string” zu verarbeiten. Die vorgeschlagene Regel, die Ihrer Suchanfrage entspricht, kann zu unterschiedlichen Ergebnissen führen. Bitte überprüfen Sie die Regelauslöser sorgfältig.',
@ -703,7 +708,7 @@ return [
'yearly' => 'jährlich',
// rules
'is_not_rule_trigger' => 'Not',
'is_not_rule_trigger' => 'Nicht',
'cannot_fire_inactive_rules' => 'Inaktive Regeln können nicht ausgeführt werden.',
'rules' => 'Regeln',
'rule_name' => 'Name der Regel',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Buchung hat keine externe URL',
'rule_trigger_id_choice' => 'Buchungskennung lautet …',
'rule_trigger_id' => 'Buchungskennung lautet „:trigger_value”',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT ist...',
'rule_trigger_sepa_ct_is' => 'SEPA CT ist ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'Die Nutzeraktion ist ":trigger_value"',
@ -1037,12 +1044,12 @@ return [
'rule_trigger_not_source_account_id' => 'Quellkonto-ID ist nicht ":trigger_value"',
'rule_trigger_not_destination_account_id' => 'Zielkonto-ID ist nicht ":trigger_value"',
'rule_trigger_not_transaction_type' => 'Buchungstyp ist nicht „:trigger_value”',
'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"',
'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"',
'rule_trigger_not_description_is' => 'Description is not ":trigger_value"',
'rule_trigger_not_description_contains' => 'Description does not contain',
'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"',
'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"',
'rule_trigger_not_tag_is' => 'Schlagwort ist nicht ":trigger_value"',
'rule_trigger_not_tag_is_not' => 'Schlagwort ist ":trigger_value"',
'rule_trigger_not_description_is' => 'Beschreibung ist nicht ":trigger_value"',
'rule_trigger_not_description_contains' => 'Beschreibung enthält nicht',
'rule_trigger_not_description_ends' => 'Beschreibung endet nicht mit ":trigger_value"',
'rule_trigger_not_description_starts' => 'Beschreibung beginnt nicht mit ":trigger_value"',
'rule_trigger_not_notes_is' => 'Notizen lauten nicht ":trigger_value"',
'rule_trigger_not_notes_contains' => 'Notizen enthalten nicht ":trigger_value"',
'rule_trigger_not_notes_ends' => 'Notizen enden nicht mit ":trigger_value"',
@ -1095,17 +1102,17 @@ return [
'rule_trigger_not_external_url_contains' => 'Externe URL enthält nicht ":trigger_value"',
'rule_trigger_not_external_url_ends' => 'Externe URL endet nicht mit ":trigger_value"',
'rule_trigger_not_external_url_starts' => 'Externe URL beginnt nicht mit ":trigger_value"',
'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"',
'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"',
'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"',
'rule_trigger_not_currency_is' => 'Währung ist nicht ":trigger_value"',
'rule_trigger_not_foreign_currency_is' => 'Fremdwährung ist nicht ":trigger_value"',
'rule_trigger_not_id' => 'Buchungs-ID ist nicht ":trigger_value"',
'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"',
'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"',
'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"',
'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"',
'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"',
'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"',
'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"',
'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"',
'rule_trigger_not_date_on' => 'Datum ist nicht am ":trigger_value"',
'rule_trigger_not_date_before' => 'Datum liegt nicht vor ":trigger_value"',
'rule_trigger_not_date_after' => 'Das Datum liegt nicht nach ":trigger_value"',
'rule_trigger_not_interest_date_on' => 'Zinsdatum ist nicht auf ":trigger_value"',
'rule_trigger_not_interest_date_before' => 'Zinsdatum liegt nicht vor ":trigger_value"',
'rule_trigger_not_interest_date_after' => 'Zinsdatum liegt nicht nach ":trigger_value"',
'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"',
'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"',
'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"',
@ -1145,7 +1152,7 @@ return [
'rule_trigger_not_exists' => 'Transaction does not exist',
'rule_trigger_not_has_attachments' => 'Transaction has no attachments',
'rule_trigger_not_has_any_category' => 'Buchung ohne Kategorie',
'rule_trigger_not_has_any_budget' => 'Buchung hat kein Budget',
'rule_trigger_not_has_any_budget' => 'Transaction has no category',
'rule_trigger_not_has_any_bill' => 'Buchung ist keine Rechnung zugewiesen',
'rule_trigger_not_has_any_tag' => 'Transaction has no tags',
'rule_trigger_not_any_notes' => 'Transaction has no notes',
@ -1179,10 +1186,10 @@ return [
'rule_action_clear_category_choice' => 'Bereinige jede Kategorie',
'rule_action_set_budget_choice' => 'Setze Budget auf ..',
'rule_action_clear_budget_choice' => 'Alle Budgets leeren',
'rule_action_add_tag_choice' => 'Add tag ..',
'rule_action_remove_tag_choice' => 'Remove tag ..',
'rule_action_add_tag_choice' => 'Schlagwort hinzufügen …',
'rule_action_remove_tag_choice' => 'Schlagwort entfernen …',
'rule_action_remove_all_tags_choice' => 'Alle Schlagwörter entfernen',
'rule_action_set_description_choice' => 'Set description to ..',
'rule_action_set_description_choice' => 'Beschreibung festlegen auf …',
'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..',
'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"',
'rule_action_append_description_choice' => 'Append description with ..',
@ -1293,7 +1300,7 @@ return [
'preferences_frontpage' => 'Startbildschirm',
'preferences_security' => 'Sicherheit',
'preferences_layout' => 'Anordnung',
'preferences_notifications' => 'Notifications',
'preferences_notifications' => 'Benachrichtigungen',
'pref_home_show_deposits' => 'Einnahmen auf dem Startbildschirm anzeigen',
'pref_home_show_deposits_info' => 'Der Startbildschirm zeigt schon Ihre Ausgabekonten an. Sollen zusätzlich Ihre Einnahmekonten angezeigt werden?',
'pref_home_do_show_deposits' => 'Ja, zeige sie an',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Umbuchungen',
'title_transfers' => 'Umbuchungen',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(keine Schlagwörter)',
// piggy banks:
'event_history' => 'Ereignisverlauf',
'add_money_to_piggy' => 'Geld zum Sparschwein „:name” übertragen',
'piggy_bank' => 'Sparschwein',
'new_piggy_bank' => 'Neues Sparschwein',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Eine Rechnung erstellen',
// recurring transactions
'create_right_now' => 'Jetzt erstellen',
'no_new_transaction_in_recurrence' => 'Es wurde keine neue Buchung erstellt. Vielleicht wurde sie für dieses Datum bereits ausgelöst?',
'recurrences' => 'Daueraufträge',
'repeat_until_in_past' => 'Diese wiederkehrende Buchung wiederholte ab dem :date nicht mehr.',
'recurring_calendar_view' => 'Kalender',

View File

@ -125,7 +125,7 @@ return [
'start' => 'Anfang des Bereichs',
'end' => 'Ende des Bereichs',
'delete_account' => 'Konto „:name” löschen',
'delete_webhook' => 'Delete webhook ":title"',
'delete_webhook' => 'Webhook ":title" löschen',
'delete_bill' => 'Rechnung „:name” löschen',
'delete_budget' => 'Budget „:name” löschen',
'delete_category' => 'Kategorie „:name” löschen',
@ -146,7 +146,7 @@ return [
'object_group_areYouSure' => 'Möchten Sie die Gruppe „:title” wirklich löschen?',
'ruleGroup_areYouSure' => 'Sind Sie sicher, dass sie die Regelgruppe ":title" löschen möchten?',
'budget_areYouSure' => 'Möchten Sie das Budget „:name” wirklich löschen?',
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
'webhook_areYouSure' => 'Sind Sie sicher, dass Sie den Webhook mit dem Namen ":title" löschen möchten?',
'category_areYouSure' => 'Möchten Sie die Kategorie „:name” wirklich löschen?',
'recurring_areYouSure' => 'Möchten Sie den Dauerauftrag „:title” wirklich löschen?',
'currency_areYouSure' => 'Möchten Sie die Währung „:name” wirklich löschen?',
@ -248,7 +248,7 @@ return [
'submitted' => 'Übermittelt',
'key' => 'Schlüssel',
'value' => 'Inhalt der Aufzeichnungen',
'webhook_delivery' => 'Delivery',
'webhook_response' => 'Response',
'webhook_delivery' => 'Zustellung',
'webhook_response' => 'Antwort',
'webhook_trigger' => 'Auslöser',
];

View File

@ -141,8 +141,8 @@ return [
'unique_piggy_bank_for_user' => 'Der Name des Sparschweins muss eindeutig sein.',
'unique_object_group' => 'Der Gruppenname muss eindeutig sein',
'starts_with' => 'Der Wert muss mit :values beginnen.',
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
'unique_existing_webhook' => 'You already have another webhook with this combination of URL, trigger, response and delivery.',
'unique_webhook' => 'Sie haben bereits einen Webhook mit dieser Kombination aus URL, Trigger, Antwort und Auslieferung.',
'unique_existing_webhook' => 'Sie haben bereits einen weiteren Webhook mit dieser Kombination aus URL, Trigger, Antwort und Auslieferung.',
'same_account_type' => 'Beide Konten müssen vom selben Kontotyp sein',
'same_account_currency' => 'Beiden Konten muss die gleiche Währung zugeordnet sein',
@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Um fortzufahren, benötigen Sie eine gültige Zielkontenkennung und/oder einen gültigen Zielkontonamen.',
'withdrawal_dest_bad_data' => 'Bei der Suche nach Kennung „:id” oder Name „:name” konnte kein gültiges Zielkonto gefunden werden.',
'reconciliation_source_bad_data' => 'Bei der Suche nach ID „:id” oder Name „:name” konnte kein gültiges Ausgleichskonto gefunden werden.',
'generic_source_bad_data' => 'Bei der Suche nach der Kennung „:id” oder dem Namen „:name” konnte kein gültiges Quellkonto gefunden werden.',
'deposit_source_need_data' => 'Um fortzufahren, benötigen Sie eine gültige Quellkontenkennung und/oder einen gültigen Quellkontonamen.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'Η συναλλαγή δεν έχει εξωτερικό URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) εξωτερικό URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Ενημέρωση κανόνα ":rule" από το ερώτημα αναζήτησης',
'create_rule_from_query' => 'Δημιουργία νέου κανόνα από το ερώτημα αναζήτησης',
'rule_from_search_words' => 'Η ρουτίνα για τους κανόνες δυσκολεύτηκε στο χειρισμό του ":string". Ο προτεινόμενος κανόνας που ταιριάζει στο ερώτημά αναζήτησης μπορεί να δώσει διαφορετικά αποτελέσματα. Παρακαλώ να επιβεβαιώσετε προσεκτικά τους κανόνες ενεργοποίησης.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Μεταφορές',
'title_transfers' => 'Μεταφορές',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(χωρίς ετικέτες)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"',
'piggy_bank' => 'Κουμπαράς',
'new_piggy_bank' => 'Νέος κουμπαράς',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Δημιουργία νέου πάγιου έξοδου',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Επαναλαμβανόμενες συναλλαγές',
'repeat_until_in_past' => 'Αυτή η επαναλαμβανόμενη συναλλαγή σταμάτησε να επαναλαμβάνεται στις :date.',
'recurring_calendar_view' => 'Ημερολόγιο',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Πρέπει να λάβετε ένα έγκυρο αναγνωριστικό ID λογαριασμού προέλευσης και/ή ένα έγκυρο όνομα λογαριασμού προορισμού για να συνεχίσετε.',
'withdrawal_dest_bad_data' => 'Δεν ήταν δυνατή η εύρεση ενός έγκυρου λογαριασμού προορισμού κατά την αναζήτηση του αναγνωριστικού ID ":id" ή του ονόματος ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Δεν ήταν δυνατή η εύρεση ενός έγκυρου λογαριασμού προέλευσης κατά την αναζήτηση του αναγνωριστικού ID ":id" ή του ονόματος ":name".',
'deposit_source_need_data' => 'Πρέπει να λάβετε ένα έγκυρο αναγνωριστικό ID λογαριασμού προέλευσης και/ή ένα έγκυρο όνομα λογαριασμού προέλευσης για να συνεχίσετε.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transfers',
'title_transfers' => 'Transfers',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"',
'piggy_bank' => 'Piggy bank',
'new_piggy_bank' => 'New piggy bank',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Create a bill',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Recurring transactions',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'La ID externo es ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'La transacción no tiene URL externa',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'La transacción debe tener alguna URL externa',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'La referencia interna es ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Actualizar regla ":rule" de la consulta de búsqueda',
'create_rule_from_query' => 'Crear nueva regla a partir de la consulta de búsqueda',
'rule_from_search_words' => 'El motor de reglas tiene un manejo difícil ":string". La regla sugerida que se ajusta a su consulta de búsqueda puede dar diferentes resultados. Por favor verifique los activadores de la regla cuidadosamente.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'La transacción no tiene URL externa',
'rule_trigger_id_choice' => 'La ID de la transacción es..',
'rule_trigger_id' => 'La ID de la transacción es ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transferencias',
'title_transfers' => 'Transferencias',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(sin etiquetas)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Añadir dinero a la hucha ":name"',
'piggy_bank' => 'Hucha',
'new_piggy_bank' => 'Nueva hucha',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Crear una factura',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Transacciones Recurrentes',
'repeat_until_in_past' => 'Esta transacción recurrente dejó de repetirse el :date.',
'recurring_calendar_view' => 'Calendario',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Necesita obtener un ID de cuenta de destino válido y/o nombre de cuenta de destino válido para continuar.',
'withdrawal_dest_bad_data' => 'No se pudo encontrar una cuenta de destino válida buscando ID ":id" o nombre ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'No se pudo encontrar una cuenta de origen válida al buscar el ID ":id" o nombre ":name".',
'deposit_source_need_data' => 'Necesita obtener un ID de cuenta de origen válido y/o nombre de cuenta de origen válido para continuar.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Ulkoinen tunnus on ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'Tapahtumalla ei ole ulkoista URL-osoitetta',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Tapahtumalla on oltava ulkoinen URL (mikä tahansa)',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Sisäinen viite on ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Päivitä sääntö ":rule" hausta',
'create_rule_from_query' => 'Luo uusi sääntö hausta',
'rule_from_search_words' => 'Sääntömoottorilla on vaikeuksia käsitellä ":string". Ehdotettu sääntö, joka sopii hakuusi, voi antaa erilaisia tuloksia. Tarkista säännön ehdot huolellisesti.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Tapahtumalla ei ole ulkoista URL-osoitetta',
'rule_trigger_id_choice' => 'Tapahtuman tunnus on..',
'rule_trigger_id' => 'Tapahtumatunnus on ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Tilisiirrot',
'title_transfers' => 'Tilisiirrot',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(ei tägejä)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Lisää rahaa säästöpossuun ":name"',
'piggy_bank' => 'Säästöpossu',
'new_piggy_bank' => 'Uusi säästöpossu',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Luo lasku',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Toistuvat tapahtumat',
'repeat_until_in_past' => 'Tämä toistuva tapahtuma lakkasi toistumasta :date.',
'recurring_calendar_view' => 'Kalenteri',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Tarvitset kelvollisen kohdetilin tunnuksen ja/tai kelvollisen kohdetilin nimen jatkaaksesi.',
'withdrawal_dest_bad_data' => 'Kelvollista kohdetiliä ei löytynyt tunnuksella ":id" tai nimellä ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Kelvollista lähdetiliä ei löytynyt, kun etsittiin tunnusta ":id" tai nimeä ":name".',
'deposit_source_need_data' => 'Tarvitset kelvollisen lähdetilin tunnuksen ja/tai kelvollisen lähdetilin nimen jatkaaksesi.',

View File

@ -142,7 +142,7 @@ return [
'left_in_budget_limit' => 'Reste à dépenser selon budget',
'current_period' => 'Période en cours',
'show_the_current_period_and_overview' => 'Afficher lexercice en cours et sa vue densemble',
'pref_languages_locale' => 'Pour une langue autre que langlais et pour fonctionner correctement, votre système dexploitation doit être équipé avec les paramètres régionaux correctes. Si ils ne sont pas présents, les données de devises, les dates et les montants peuvent être mal formatés.',
'pref_languages_locale' => 'Pour une langue autre que langlais et pour fonctionner correctement, votre système dexploitation doit être équipé avec les paramètres régionaux corrects. S\'ils ne sont pas présents, les données de devises, les dates et les montants peuvent être mal formatés.',
'budget_in_period' => 'Toutes les opérations pour le budget ":name" entre :start et :end dans la monnaie :currency',
'chart_budget_in_period' => 'Graphique pour toutes les opérations pour le budget ":name" entre :start et :end dans :currency',
'chart_budget_in_period_only_currency' => 'Le montant que vous avez budgété était en :currency, ce graphique ne montrera donc que les opérations en :currency.',
@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'L\'ID externe est ":value"',
'search_modifier_not_external_id_is' => 'L\'ID externe n\'est pas ":value"',
'search_modifier_no_external_url' => 'L\'opération n\'a pas d\'URL externe',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'L\'opération n\'a pas d\'URL externe',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'L\'opération doit avoir une URL externe',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'L\'opération doit avoir une URL externe',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'La référence interne est ":value"',
'search_modifier_not_internal_reference_is' => 'La référence interne n\'est pas ":value"',
'search_modifier_description_starts' => 'La description commence par ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Les notes d\'une pièce jointe ne contiennent pas ":value"',
'search_modifier_not_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":value"',
'search_modifier_not_attachment_notes_ends' => 'Les notes d\'une pièce jointe ne se terminent pas par ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Mettre à jour la règle ":rule" à partir de la requête de recherche',
'create_rule_from_query' => 'Créer une nouvelle règle à partir de la requête de recherche',
'rule_from_search_words' => 'Le moteur de règles a du mal à gérer ":string". La règle suggérée qui correspond à votre requête de recherche peut donner des résultats différents. Veuillez vérifier que la règle se déclenche correctement.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'L\'opération n\'a pas d\'URL externe',
'rule_trigger_id_choice' => 'L\'ID de l\'opération est..',
'rule_trigger_id' => 'L\'ID de l\'opération est ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'L\'action de lutilisateur est ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transferts',
'title_transfers' => 'Transferts',
'submission_options' => 'Options de soumission',
'apply_rules_checkbox' => 'Appliquer les règles',
'apply_rules_checkbox' => 'Appliquer les règles',
'fire_webhooks_checkbox' => 'Lancer les webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(pas de mot-clé)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Ajouter de largent à la tirelire ":name"',
'piggy_bank' => 'Tirelire',
'new_piggy_bank' => 'Nouvelle tirelire',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Créer une facture',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Opérations périodiques',
'repeat_until_in_past' => 'Cette opération récurrente a cessé de se répéter le :date.',
'recurring_calendar_view' => 'Calendrier',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Vous devez obtenir un ID de compte de destination valide et/ou un nom de compte de destination valide pour continuer.',
'withdrawal_dest_bad_data' => 'Impossible de trouver un compte de destination valide lors de la recherche de l\'ID ":id" ou du nom ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Impossible de trouver un compte source valide lors de la recherche de l\'ID ":id" ou du nom ":name".',
'deposit_source_need_data' => 'Vous devez obtenir un ID de compte source valide et/ou un nom de compte source valide pour continuer.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => '":rule" szabály frissítése a keresési feltételek alapján',
'create_rule_from_query' => 'Új szabály létrehozása a keresési feltételek alapján',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Átvezetések',
'title_transfers' => 'Átvezetések',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(nincsenek címkék)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Pénz hozzáadása ":name" malacperselyhez',
'piggy_bank' => 'Malacpersely',
'new_piggy_bank' => 'Új malacpersely',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Számla létrehozása',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Ismétlődő tranzakciók',
'repeat_until_in_past' => 'Ez a rendszeres tranzakció leállt ekkor: :date.',
'recurring_calendar_view' => 'Naptár',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Egy érvényes célszámla azonosító és/vagy egy érvényes célszámla név kell a folytatáshoz.',
'withdrawal_dest_bad_data' => 'Nem található érvényes célszámla ":id" azonosító vagy ":name" név keresésekor.',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Egy érvényes forrásszámla azonosító és/vagy egy érvényes forrásszámla név kell a folytatáshoz.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transfer',
'title_transfers' => 'Transfer',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Tambahkan uang ke celengan ":name"',
'piggy_bank' => 'Celengan',
'new_piggy_bank' => 'Celengan baru',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Buat tagihan',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Recurring transactions',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Perlu untuk mendapatkan sebuah ID akun tujuan yang valid dan/atau nama akun tujuan yang valid untuk melanjutkan.',
'withdrawal_dest_bad_data' => 'Tidak dapat menemukan sebuah akun tujuan yang valid saat mencari ID ":id" atau nama ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Tidak dapat menemukan sebuah akun sumber yang valid saat mencari ID ":id" atau nama ":name".',
'deposit_source_need_data' => 'Perlu untuk mendapatkan sebuah ID akun sumber yang valid dan/atau nama akun sumber yang valid untuk melanjutkan.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'L\'ID esterno è ":value"',
'search_modifier_not_external_id_is' => 'L\'ID esterno non è ":value"',
'search_modifier_no_external_url' => 'La transazione non ha URL esterno',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'La transazione non ha URL esterno',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'La transazione deve avere un (qualsiasi) URL esterno',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'La transazione deve avere un (qualsiasi) URL esterno',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Il riferimento interno è ":value"',
'search_modifier_not_internal_reference_is' => 'Il riferimento interno non è ":value"',
'search_modifier_description_starts' => 'La descrizione inizia con ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Aggiorna la regola ":rule" dalla ricerca',
'create_rule_from_query' => 'Crea nuova regola dalla ricerca',
'rule_from_search_words' => 'Il motore delle regole ha difficoltà a gestire ":string". La regola suggerita che si adatta alla tua ricerca potrebbe dare risultati diversi. Verifica attentamente che la regola funzioni.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'La transazione non ha URL esterno',
'rule_trigger_id_choice' => 'L\'ID della transazione è...',
'rule_trigger_id' => 'L\'ID della transazione è ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Trasferimenti',
'title_transfers' => 'Trasferimenti',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(nessuna etichetta)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Aggiungi denaro al salvadanaio":name"',
'piggy_bank' => 'Salvadanaio',
'new_piggy_bank' => 'Nuovo salvadanaio',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Crea bolletta',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Transazioni ricorrenti',
'repeat_until_in_past' => 'Questa transazione ricorrente ha smesso di ripetersi il :date.',
'recurring_calendar_view' => 'Calendario',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'È necessario ottenere un ID e/o un nome del conto di destinazione validi per continuare.',
'withdrawal_dest_bad_data' => 'Non è stato possibile trovare un conto di destinazione valido effettuando la ricerca con l\'ID ":id" o il nome ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Non è stato possibile trovare un conto d\'origine valido effettuando la ricerca con l\'ID ":id" o il nome ":name".',
'deposit_source_need_data' => 'È necessario ottenere un ID e/o un nome del conto di origine validi per continuare.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => '外部 ID が「:value」',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => '外部 URL がない取引',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => '外部 URL がある取引',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => '内部参照が「:value」',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => '検索クエリからルール「:rule」を更新',
'create_rule_from_query' => '検索クエリから新しいルールを作成',
'rule_from_search_words' => 'ルールエンジンは「:string」をうまく扱えません。 検索クエリに提案されたルールは、異なる結果をもたらす可能性があります。ルールのトリガーは慎重に検証してください。',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => '取引に外部 URL がない',
'rule_trigger_id_choice' => '取引 ID が…',
'rule_trigger_id' => '取引 ID が「:trigger_value」',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'ユーザーアクションが「:trigger_value」',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => '送金',
'title_transfers' => '送金',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(タグなし)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => '貯金箱「:name」にお金を追加',
'piggy_bank' => '貯金箱',
'new_piggy_bank' => '新しい貯金箱',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => '請求を作成',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => '定期的な取引',
'repeat_until_in_past' => 'この繰り返し取引は :date で繰り返し処理を停止しました。',
'recurring_calendar_view' => 'カレンダー',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => '続行するには、有効な預け入れ口座 ID および(または)有効な預け入れ口座名を取得する必要があります。',
'withdrawal_dest_bad_data' => 'ID「:id」、名称「:name」で検索した結果、有効な預け入れ口座が見つかりませんでした。',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'ID「:id」、名称「:name」で検索した結果、有効な引き出し元口座が見つかりませんでした。',
'deposit_source_need_data' => '続行するには、有効な引き出し元口座 ID および(または)有効な引き出し元口座名を取得する必要があります。',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transfers',
'title_transfers' => 'Transfers',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"',
'piggy_bank' => 'Piggy bank',
'new_piggy_bank' => 'New piggy bank',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Create a bill',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Recurring transactions',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Ekstern ID er ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'Transaksjonen har ingen ekstern URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Transaksjonen må ha minst en ekstern URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Intern referanse er ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaksjons-ID er',
'rule_trigger_id' => 'Transaksjons ID er ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Overføringer',
'title_transfers' => 'Overføringer',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Legg til penger i sparegris ":name"',
'piggy_bank' => 'Sparegris',
'new_piggy_bank' => 'Ny sparegris',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Opprett en regning',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Gjentakende transaksjoner',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Kalender',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Trenger en gyldig destinasjons konto-ID og/eller gyldig destinasjons kontonavn for å fortsette.',
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Trenger en gyldig kilde konto-ID og/eller gyldig kilde kontonavn for å fortsette.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Externe ID is ":value"',
'search_modifier_not_external_id_is' => 'Externe ID is niet ":value"',
'search_modifier_no_external_url' => 'De transactie heeft geen externe URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'De transactie heeft geen externe URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'De transactie heeft een (welke dan ook) externe URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'De transactie heeft een (welke dan ook) externe URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Interne referentie is ":value"',
'search_modifier_not_internal_reference_is' => 'Interne referentie is niet ":value"',
'search_modifier_description_starts' => 'Omschrijving begint met ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie niet ":value" bevatten',
'search_modifier_not_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":value"',
'search_modifier_not_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie niet eindigt op ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update regel ":rule" middels zoekquery',
'create_rule_from_query' => 'Nieuwe regel op basis van zoekquery',
'rule_from_search_words' => 'Firefly III heeft moeite met deze query: ":string". De voorgestelde regel die past bij je zoekquery kan afwijken. Controleer de regel zorgvuldig.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'De transactie heeft geen externe URL',
'rule_trigger_id_choice' => 'Transactie-ID is..',
'rule_trigger_id' => 'Transactie-ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'Gebruikersactie is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Overschrijvingen',
'title_transfers' => 'Overschrijvingen',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(geen tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Stop geld in spaarpotje ":name"',
'piggy_bank' => 'Spaarpotje',
'new_piggy_bank' => 'Nieuw spaarpotje',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Maak een contract',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Periodieke transacties',
'repeat_until_in_past' => 'Deze periodieke transactie stopte met herhalen op :date.',
'recurring_calendar_view' => 'Kalender',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Om door te gaan moet een geldig bronrekening ID en/of geldige bronrekeningnaam worden gevonden.',
'withdrawal_dest_bad_data' => 'Kan geen geldige doelrekening vinden bij het zoeken naar ID ":id" of naam ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Kan geen geldige bronrekening vinden bij het zoeken naar ID ":id" of naam ":name".',
'deposit_source_need_data' => 'Om door te gaan moet een geldige bronrekening ID en/of geldige bronrekeningnaam worden gevonden.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Zewnętrzne ID to ":value"',
'search_modifier_not_external_id_is' => 'Zewnętrzne ID to nie ":value"',
'search_modifier_no_external_url' => 'Transakcja nie ma zewnętrznego adresu URL',
'search_modifier_no_external_id' => 'Transakcja nie ma zewnętrznego ID',
'search_modifier_not_any_external_url' => 'Transakcja nie ma zewnętrznego adresu URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Transakcja musi mieć (dowolny) zewnętrzny adres URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'Transakcja musi mieć (dowolny) zewnętrzny adres URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Wewnętrzne odwołanie to ":value"',
'search_modifier_not_internal_reference_is' => 'Wewnętrzne odwołanie to nie ":value"',
'search_modifier_description_starts' => 'Opis zaczyna się od ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Aktualizuj regułę ":rule" z zapytania wyszukiwania',
'create_rule_from_query' => 'Utwórz nową regułę z zapytania wyszukiwania',
'rule_from_search_words' => 'Silnik reguł ma problemy z obsługą ":string". Sugerowana reguła, która pasuje do Twojego zapytania może dawać różne wyniki. Proszę dokładnie sprawdź wyzwalacze reguł.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transakcja nie ma zewnętrznego adresu URL',
'rule_trigger_id_choice' => 'Identyfikator transakcji to..',
'rule_trigger_id' => 'Identyfikator transakcji to ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transfery',
'title_transfers' => 'Transfery',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(brak tagów)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Dodaj pieniądze do skarbonki ":name"',
'piggy_bank' => 'Skarbonka',
'new_piggy_bank' => 'Nowa skarbonka',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Utwórz rachunek',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Cykliczne transakcje',
'repeat_until_in_past' => 'Ta cykliczna transakcja przestała powtarzać się w dniu :date.',
'recurring_calendar_view' => 'Kalendarz',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Aby kontynuować, musisz uzyskać prawidłowy identyfikator konta wydatków i/lub prawidłową nazwę konta wydatków.',
'withdrawal_dest_bad_data' => 'Nie można znaleźć poprawnego konta wydatków podczas wyszukiwania identyfikatora ":id" lub nazwy ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Nie można znaleźć poprawnego konta źródłowego podczas wyszukiwania identyfikatora ":id" lub nazwy ":name".',
'deposit_source_need_data' => 'Aby kontynuować, musisz uzyskać prawidłowy identyfikator konta źródłowego i/lub prawidłową nazwę konta źródłowego.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'O ID externo é ":value"',
'search_modifier_not_external_id_is' => 'ID Externo não é ":value"',
'search_modifier_no_external_url' => 'A transação não tem URL externa',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'A transação não tem URL externa',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'A transação deve ter uma URL externa (qualquer)',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'A transação deve ter uma URL externa (qualquer)',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'A referência interna é ":value"',
'search_modifier_not_internal_reference_is' => 'Referência interna não é ":value"',
'search_modifier_description_starts' => 'Descrição começa com ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Atualizar regra ":rule" da pesquisa',
'create_rule_from_query' => 'Criar nova regra a partir da pesquisa',
'rule_from_search_words' => 'O mecanismo de regra tem dificuldade para tratar ":string". A regra sugerida que se encaixa na sua pesquisa pode retornar resultados diferentes. Por favor, verifique os gatilhos das regras cuidadosamente.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'A transação não tem um link externo',
'rule_trigger_id_choice' => 'O identificador da transação é..',
'rule_trigger_id' => 'O identificador da transação é ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'Ação do usuário é ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transferências',
'title_transfers' => 'Transferências',
'submission_options' => 'Opções de envio',
'apply_rules_checkbox' => 'Aplicar regras',
'apply_rules_checkbox' => 'Aplicar regras',
'fire_webhooks_checkbox' => 'Acionar webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(sem etiquetas)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Adicionar dinheiro ao cofrinho ":name"',
'piggy_bank' => 'Cofrinho',
'new_piggy_bank' => 'Nova poupança',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Criar uma conta',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Transações recorrentes',
'repeat_until_in_past' => 'Esta transação recorrente parou de repetir em :date.',
'recurring_calendar_view' => 'Calendário',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'É necessário obter um ID de uma conta de destino válida e/ou um nome de conta de destino válido para continuar.',
'withdrawal_dest_bad_data' => 'Não foi possível encontrar uma conta de destino válida ao pesquisar por ID ":id" ou nome ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Não foi possível encontrar uma conta de origem válida ao pesquisar pelo ID ":id" ou pelo nome ":name".',
'deposit_source_need_data' => 'É necessário obter um ID de uma conta de origem válida e/ou um nome de conta de origem válido para continuar.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'ID externo é ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'A transação não tem nenhum URL externo',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'A transação tem que ter um URL externo (qualquer)',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'A referência interna é ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Actualizar regra ":rule" da pesquisa',
'create_rule_from_query' => 'Criar nova regra a partir da pesquisa',
'rule_from_search_words' => 'O mecanismo de regras tem dificuldade com ":string". A regra sugerida que se encaixa na pesquisa pode mostrar resultados diferentes. Por favor, verifique os gatilhos das regras cuidadosamente.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'ID da transação é..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transferências',
'title_transfers' => 'Transferências',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(sem etiquetas)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Adicionar dinheiro ao mealheiro ":name"',
'piggy_bank' => 'Mealheiro',
'new_piggy_bank' => 'Novo mealheiro',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Criar uma fatura',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Transações recorrentes',
'repeat_until_in_past' => 'Esta transação recorrente parou de repetir a :date.',
'recurring_calendar_view' => 'Calendário',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'É necessário ter um ID de conta de destino válido e/ou um nome de conta de destino válido para continuar.',
'withdrawal_dest_bad_data' => 'Não foi possível encontrar uma conta de destino válida ao pesquisar pelo ID ":id" ou nome ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Não foi possível encontrar uma conta de origem válida ao pesquisar pelo ID ":id" ou nome ":name".',
'deposit_source_need_data' => 'É preciso ter um ID de uma conta de origem válida e/ou um nome de uma conta de origem válida para continuar.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Actualizați regula ":rule" din interogarea de căutare',
'create_rule_from_query' => 'Creați o nouă regulă din interogarea de căutare',
'rule_from_search_words' => 'Motorul regulii are dificultăți în manipularea ":string". Regula sugerată care se potrivește interogării dvs. poate da rezultate diferite. Vă rugăm să verificați declanșatorii regulii cu atenție.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transferuri',
'title_transfers' => 'Transferuri',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(fără etichete)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Adăugați bani la pușculiță ":name"',
'piggy_bank' => 'Pușculiță',
'new_piggy_bank' => 'Pușculiță nouă',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Creați o factură',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Tranzacții recurente',
'repeat_until_in_past' => 'Această tranzacție recurentă a încetat să se mai repete la :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Trebuie să continuați să obțineți un ID de cont de destinație valabil și / sau un nume de cont de destinație valabil.',
'withdrawal_dest_bad_data' => 'Nu s-a găsit un cont de destinaţie valabil la căutarea ID ":id" sau nume ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Nu s-a găsit un cont sursă valid la căutarea ID-ului ":id" sau a numelui ":name".',
'deposit_source_need_data' => 'Trebuie să continuați să obțineți un ID de cont sursă valabil și / sau un nume de cont sursă valabil.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Внешний ID: ":value"',
'search_modifier_not_external_id_is' => 'Внешний ID не ":value"',
'search_modifier_no_external_url' => 'У транзакции нет внешнего URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'У транзакции нет внешнего URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Транзакция должна иметь (любой) внешний URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'Транзакция должна иметь (любой) внешний URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Внутренняя ссылка: ":value"',
'search_modifier_not_internal_reference_is' => 'Внутренняя ссылка не ":value"',
'search_modifier_description_starts' => 'Описание начинается с ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Обновить правило ":rule" из поискового запроса',
'create_rule_from_query' => 'Создать новое правило из поискового запроса',
'rule_from_search_words' => 'Механизм правил не справился с обработкой ":string". Предлагаемое правило, удовлетворяющее вашему поисковому запросу, может дать различные результаты. Пожалуйста, тщательно проверьте условия правила.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'У транзакции нет внешнего URL',
'rule_trigger_id_choice' => 'ID транзакции..',
'rule_trigger_id' => 'ID транзакции ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'Действие пользователя = ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Переводы',
'title_transfers' => 'Переводы',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Применить правила',
'apply_rules_checkbox' => 'Применить правила',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(нет меток)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Добавить деньги в копилку ":name"',
'piggy_bank' => 'Копилка',
'new_piggy_bank' => 'Новая копилка',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Создать счет к оплате',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Повторяющиеся транзакции',
'repeat_until_in_past' => 'Повторение этой повторяющейся транзакции прервано :date.',
'recurring_calendar_view' => 'Календарь',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Для продолжения необходим действительный ID счёта назначения и/или действительное имя счёта.',
'withdrawal_dest_bad_data' => 'Не удалось найти действительный счёт назначения при поиске ID ":id" или имени ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Не удалось найти корректный счёт-источник при поиске ID ":id" или имени ":name".',
'deposit_source_need_data' => 'Для продолжения необходим действительный ID счёта-источника и/или действительное имя счёта.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Aktualizovať pravidlo ":rule" vyhľadávaným výrazom',
'create_rule_from_query' => 'Vytvoriť z vyhľadávaného výrazu nové pravidlo',
'rule_from_search_words' => 'Pravidlo má ťažkosti so spracovaním „:string“. Navrhované pravidlo, ktoré vyhovuje vášmu vyhľadávaciemu pojmu, môže poskytnúť rôzne výsledky. Dôkladne skontrolujte spúšťače pravidiel.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Prevody',
'title_transfers' => 'Prevody',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(žiadne štítky)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Vložiť peniaze do pokladničky ":name"',
'piggy_bank' => 'Pokladnička',
'new_piggy_bank' => 'Nová pokladnička',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Vytvoriť účet',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Opakované transakcie',
'repeat_until_in_past' => 'Táto opakujúca sa transakcia sa prestala opakovať :date.',
'recurring_calendar_view' => 'Kalendár',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Pro pokračovanie je potrebné platné ID zdrojového účtu a/alebo platný názov zdrojového účtu.',
'withdrawal_dest_bad_data' => 'Pre ID „:id“ alebo mena „:name“ sa nenašiel žiadny platný cieľový účet.',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Pre ID ":id" alebo meno ":name" sa nenašiel žiadny platný zdrojový účet.',
'deposit_source_need_data' => 'Pre pokračovanie je potrebné platné ID zdrojového účtu a/alebo platný názov zdrojového účtu.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Prenosi',
'title_transfers' => 'Prenosi',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Uporabi pravila',
'apply_rules_checkbox' => 'Uporabi pravila',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(ni oznak)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Dodaj denar na hranilnik ":name"',
'piggy_bank' => 'Dodaj hranilnik',
'new_piggy_bank' => 'Nov hranilnik',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Ustvari trajnik',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Ponavljajoče transakcije',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Koledar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'Transaktionen saknar extern URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Transaktionen måste ha en extern URL (valfri)',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Uppdatera regel ":rule" från sökfråga',
'create_rule_from_query' => 'Skapa ny regel från sökfrågan',
'rule_from_search_words' => 'Regelmotorn har svårt att hantera ":string". Den föreslagna regeln som passar din sökfråga kan ge olika resultat. Kontrollera regelutlösarna noggrant.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaktionen saknar extern URL',
'rule_trigger_id_choice' => 'Transaktions-ID är..',
'rule_trigger_id' => 'Transaktions-ID är ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Överföringar',
'title_transfers' => 'Överföringar',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(inga etiketter)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Lägg till pengar till spargris ":name"',
'piggy_bank' => 'Spargris',
'new_piggy_bank' => 'Ny spargris',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Skapa en nota',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Återkommande transaktioner',
'repeat_until_in_past' => 'Denna återkommande transaktion slutade upprepas :date.',
'recurring_calendar_view' => 'Kalender',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Ett giltigt destinationskonto-ID och/eller giltigt mottagarkontonamn behövs för att gå vidare.',
'withdrawal_dest_bad_data' => 'Det gick inte att hitta ett giltigt mottagarkonto med ID ":id" eller namn ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Det gick inte att hitta ett giltigt källkonto med ID ":id" eller namn ":name".',
'deposit_source_need_data' => 'Ett giltigt källkonto-ID och/eller ett giltigt källkontonamn behövs för att gå vidare.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Transfers',
'title_transfers' => 'Transfers',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"',
'piggy_bank' => 'Piggy bank',
'new_piggy_bank' => 'New piggy bank',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Create a bill',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Recurring transactions',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',

View File

@ -336,9 +336,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'İşlemin harici URL\'si yok',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'İşlemin (herhangi bir) harici URL\'si olmalıdır',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -676,6 +680,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Arama sorgusundan ":rule" kuralını güncelle',
'create_rule_from_query' => 'Arama sorgusundan yeni kural oluşturma',
'rule_from_search_words' => 'Kural altyapısı ":string" işlemekte zorlanıyor. Arama sorgunuza uyan önerilen kural farklı sonuçlar verebilir. Lütfen kural tetikleyicilerini dikkatlice doğrulayın.',
@ -899,6 +904,8 @@ return [
'rule_trigger_no_external_url_choice' => 'İşlemin harici URL\'si yok',
'rule_trigger_id_choice' => 'İşlem kimliğidir..',
'rule_trigger_id' => 'İşlem kimliği:trigger_value',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1488,7 +1495,7 @@ return [
'title_transfer' => 'Transferler',
'title_transfers' => 'Transferler',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2186,6 +2193,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => '":name" kumbarasına paraa ekle',
'piggy_bank' => 'Kumbara',
'new_piggy_bank' => 'Yeni kumbara',
@ -2444,6 +2452,8 @@ return [
'no_bills_create_default' => 'Fatura oluştur',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Tekrar Eden İşlemler',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'Зовнішній ID - ":value"',
'search_modifier_not_external_id_is' => 'Зовнішній ідентифікатор не ":value"',
'search_modifier_no_external_url' => 'Операція не має зовнішнього URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'Операція не має зовнішнього URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Операція повинна мати зовнішні URL-адреси (будь-який)',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'Операція повинна мати (будь-які) зовнішні URL-адреси',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Внутрішнє посилання - ":value"',
'search_modifier_not_internal_reference_is' => 'Внутрішнє посилання не ":value"',
'search_modifier_description_starts' => 'Опис починається з ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Будь-які примітки вкладення не містять ":value"',
'search_modifier_not_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":value"',
'search_modifier_not_attachment_notes_ends' => 'Примітки до вкладення не закінчуються на ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Оновити правило ":rule" із пошукового запиту',
'create_rule_from_query' => 'Створити нове правило з пошукового запиту',
'rule_from_search_words' => 'Рушію правил важко обробити ":string". Пропоноване правило, яке відповідає вашому запиту, може дати різні результати. Будь ласка, уважно перевіряйте умови.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Операція не має зовнішньої URL-адреси',
'rule_trigger_id_choice' => 'Ідентифікатор операції..',
'rule_trigger_id' => 'Ідентифікатор операції: ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'Дія користувача: ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Переказ',
'title_transfers' => 'Перекази',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Add money to piggy bank ":name"',
'piggy_bank' => 'Piggy bank',
'new_piggy_bank' => 'New piggy bank',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Create a bill',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Recurring transactions',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => 'Calendar',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Щоб продовжити, необхідно вказати дійсний ID рахунку і/або його назву.',
'withdrawal_dest_bad_data' => 'Не вдалося знайти дійсний рахунок з ID ":id" або іменем ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => 'Щоб продовжити, необхідно вказати дійсний ID вихідного рахунку і/або його назву.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'Giao dịch không có URL bên ngoài',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Tạo quy tắc mới từ truy vấn tìm kiếm',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => 'Chuyển',
'title_transfers' => 'Chuyển',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(không có nhãn)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => 'Thêm tiền vào heo đất ":name"',
'piggy_bank' => 'Heo đất',
'new_piggy_bank' => 'Tạo heo đất mới',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => 'Tạo hóa đơn',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => 'Giao dịch định kỳ',
'repeat_until_in_past' => 'Giao dịch định kỳ này đã dừng lặp lại vào :date.',
'recurring_calendar_view' => 'Lịch',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => 'Cần lấy ID tài khoản đích hợp lệ và / hoặc tên tài khoản đích hợp lệ để tiếp tục.',
'withdrawal_dest_bad_data' => 'Không thể tìm thấy tài khoản đích hợp lệ khi tìm kiếm ID ":id" hoặc tên ":name".',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Không thể tìm thấy tài khoản nguồn hợp lệ khi tìm kiếm ID ":id" hoặc tên ":name".',
'deposit_source_need_data' => 'Cần lấy ID tài khoản nguồn hợp lệ và / hoặc tên tài khoản nguồn hợp lệ để tiếp tục.',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => '外部 ID 为“:value”',
'search_modifier_not_external_id_is' => '外部 ID 不为“:value”',
'search_modifier_no_external_url' => '交易没有外部链接',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => '交易没有外部链接',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => '交易必须有一个(或任意多个)外部链接',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => '交易必须有一个(或任意多个)外部链接',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => '内部引用为“:value”',
'search_modifier_not_internal_reference_is' => '内部引用不为“:value”',
'search_modifier_description_starts' => '描述开头为“:value”',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => '从搜索语句更新规则“:rule”',
'create_rule_from_query' => '从搜索语句创建新规则',
'rule_from_search_words' => '规则引擎无法处理“:string”。符合搜索语句的建议规则可能会给出不同的结果请仔细确认规则触发条件。',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => '交易没有外部链接',
'rule_trigger_id_choice' => '交易ID为...',
'rule_trigger_id' => '交易ID为":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => '转账',
'title_transfers' => '转账',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => '应用规则',
'apply_rules_checkbox' => '应用规则',
'fire_webhooks_checkbox' => '触发 webhook',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(无标签)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => '存入存钱罐 “:name”',
'piggy_bank' => '存钱罐',
'new_piggy_bank' => '新存钱罐',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => '创建账单',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => '定期交易',
'repeat_until_in_past' => '此定期交易已于 :date 停止重复。',
'recurring_calendar_view' => '日历',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => '需要一个有效的目标账户 ID 和/或目标账户名称才能继续',
'withdrawal_dest_bad_data' => '搜索 ID “:id”或名称“:name”时找不到有效的目标账户',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => '搜索 ID “:id”或名称“:name”时找不到有效的来源账户',
'deposit_source_need_data' => '需要一个有效的来源账户 ID 和/或来源账户名称才能继续',

View File

@ -335,9 +335,13 @@ return [
'search_modifier_external_id_is' => 'External ID is ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_no_external_url' => 'The transaction has no external URL',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
@ -675,6 +679,7 @@ return [
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"',
'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"',
'update_rule_from_query' => 'Update rule ":rule" from search query',
'create_rule_from_query' => 'Create new rule from search query',
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
@ -898,6 +903,8 @@ return [
'rule_trigger_no_external_url_choice' => 'Transaction has no external URL',
'rule_trigger_id_choice' => 'Transaction ID is..',
'rule_trigger_id' => 'Transaction ID is ":trigger_value"',
'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..',
'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"',
// new values:
'rule_trigger_user_action_choice' => 'User action is ":trigger_value"',
@ -1487,7 +1494,7 @@ return [
'title_transfer' => '轉帳',
'title_transfers' => '轉帳',
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'apply_rules_checkbox' => 'Apply rules',
'fire_webhooks_checkbox' => 'Fire webhooks',
// convert stuff:
@ -2185,6 +2192,7 @@ return [
'no_tags' => '(no tags)',
// piggy banks:
'event_history' => 'Event history',
'add_money_to_piggy' => '新增金錢至小豬撲滿 “:name”',
'piggy_bank' => '小豬撲滿',
'new_piggy_bank' => '新小豬撲滿',
@ -2443,6 +2451,8 @@ return [
'no_bills_create_default' => '建立新帳單',
// recurring transactions
'create_right_now' => 'Create right now',
'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?',
'recurrences' => '週期性交易',
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
'recurring_calendar_view' => '月曆',

View File

@ -194,6 +194,8 @@ return [
'withdrawal_dest_need_data' => '需要有效的目標帳戶 ID 及/或有效的目標帳戶名稱才能繼續。',
'withdrawal_dest_bad_data' => '搜尋 ID ":id" 或名稱 ":name" 都找不到有效的目標帳戶。',
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
'deposit_source_need_data' => '需要有效的來源帳戶 ID 及/或有效的來源帳戶名稱才能繼續。',

View File

@ -77,6 +77,7 @@
<td class="hidden-sm hidden-xs" style="width:40px;">
{% if piggy.left_to_save > 0 or null == piggy.left_to_save %}
<a href="{{ route('piggy-banks.add-money', piggy.id) }}" class="btn btn-default btn-xs addMoney" data-id="{{ piggy.id }}">
<span data-id="{{ piggy.id }}" class="fa fa-plus"></span></a>

View File

@ -12,6 +12,6 @@ sonar.organization=firefly-iii
#sonar.sourceEncoding=UTF-8
sonar.projectVersion=5.7.16
sonar.projectVersion=5.7.17
sonar.sources=app,bootstrap,database,resources/assets,resources/views,routes,tests
sonar.sourceEncoding=UTF-8

View File

@ -1194,9 +1194,9 @@
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
"@types/node@*":
version "18.11.17"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.17.tgz#5c009e1d9c38f4a2a9d45c0b0c493fe6cdb4bcb5"
integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==
version "18.11.18"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f"
integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==
"@types/parse-json@^4.0.0":
version "4.0.0"
@ -1623,9 +1623,9 @@ autoprefixer@^10.4.0:
postcss-value-parser "^4.2.0"
axios@^1.2:
version "1.2.1"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.2.1.tgz#44cf04a3c9f0c2252ebd85975361c026cb9f864a"
integrity sha512-I88cFiGu9ryt/tfVEi4kX2SITsvDddTajXTOFmt2uK1ZVA8LytjtdeyefdQWEf5PU8w+4SSJDoYnggflB5tW4A==
version "1.2.2"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.2.2.tgz#72681724c6e6a43a9fea860fc558127dbe32f9f1"
integrity sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==
dependencies:
follow-redirects "^1.15.0"
form-data "^4.0.0"
@ -2148,9 +2148,9 @@ cookie@0.5.0:
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
core-js-compat@^3.25.1:
version "3.26.1"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df"
integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==
version "3.27.0"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.27.0.tgz#e2c58a89df6432a5f36f3fa34097e9e83e709fb6"
integrity sha512-spN2H4E/wocMML7XtbKuqttHHM+zbF3bAdl9mT4/iyFaF33bowQGjxiWNWyvUJGH9F+hTgnhWziiLtwu3oC/Qg==
dependencies:
browserslist "^4.21.4"