mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Update meta files for new release.
This commit is contained in:
parent
321743dbf6
commit
e35743ff42
@ -74,7 +74,7 @@ class FixIbans extends Command
|
||||
$set[$userId] = $set[$userId] ?? [];
|
||||
$iban = (string)$account->iban;
|
||||
$type = $account->accountType->type;
|
||||
if(in_array($type, [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE])) {
|
||||
if(in_array($type, [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], true)) {
|
||||
$type = 'liabilities';
|
||||
}
|
||||
if(array_key_exists($iban, $set[$userId])) {
|
||||
@ -82,7 +82,7 @@ class FixIbans extends Command
|
||||
if(
|
||||
!(AccountType::EXPENSE === $set[$userId][$iban] && AccountType::REVENUE === $type) && // allowed combination
|
||||
!(AccountType::REVENUE === $set[$userId][$iban] && AccountType::EXPENSE === $type) // also allowed combination.
|
||||
){
|
||||
) {
|
||||
$this->line(sprintf('IBAN "%s" is used more than once and will be removed from %s #%d ("%s")', $iban, $account->accountType->type, $account->id, $account->name));
|
||||
$account->iban = null;
|
||||
$account->save();
|
||||
|
@ -36,7 +36,7 @@ use Illuminate\Support\Facades\Log;
|
||||
class UniqueIban implements ValidationRule
|
||||
{
|
||||
private ?Account $account;
|
||||
private array $expectedTypes;
|
||||
private array $expectedTypes;
|
||||
|
||||
/**
|
||||
* Create a new rule instance.
|
||||
@ -47,8 +47,9 @@ class UniqueIban implements ValidationRule
|
||||
*/
|
||||
public function __construct(?Account $account, ?string $expectedType)
|
||||
{
|
||||
$this->account = $account;
|
||||
if(null === $expectedType){
|
||||
$this->account = $account;
|
||||
$this->expectedTypes = [];
|
||||
if (null === $expectedType) {
|
||||
return;
|
||||
}
|
||||
$this->expectedTypes = [$expectedType];
|
||||
@ -128,10 +129,10 @@ class UniqueIban implements ValidationRule
|
||||
AccountType::ASSET => 0,
|
||||
AccountType::EXPENSE => 0,
|
||||
AccountType::REVENUE => 0,
|
||||
'liabilities' => 0,
|
||||
'liabilities' => 0,
|
||||
];
|
||||
|
||||
if (in_array('expense',$this->expectedTypes,true) ||in_array(AccountType::EXPENSE, $this->expectedTypes, true)) {
|
||||
if (in_array('expense', $this->expectedTypes, true) || in_array(AccountType::EXPENSE, $this->expectedTypes, true)) {
|
||||
// IBAN should be unique amongst expense and asset accounts.
|
||||
// may appear once in revenue accounts
|
||||
$maxCounts[AccountType::REVENUE] = 1;
|
||||
@ -154,7 +155,7 @@ class UniqueIban implements ValidationRule
|
||||
private function countHits(string $type, string $iban): int
|
||||
{
|
||||
$typesArray = [$type];
|
||||
if('liabilities' === $type) {
|
||||
if ('liabilities' === $type) {
|
||||
$typesArray = [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE];
|
||||
}
|
||||
$query
|
||||
@ -176,7 +177,7 @@ class UniqueIban implements ValidationRule
|
||||
*/
|
||||
public function validate(string $attribute, mixed $value, Closure $fail): void
|
||||
{
|
||||
if(!$this->passes($attribute, $value)) {
|
||||
if (!$this->passes($attribute, $value)) {
|
||||
$fail((string)trans('validation.unique_iban_for_user'));
|
||||
}
|
||||
}
|
||||
|
16
changelog.md
16
changelog.md
@ -2,6 +2,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## 6.0.9 - 2023-04-29
|
||||
|
||||
### Added
|
||||
- Better length validation for text fields.
|
||||
|
||||
### Changed
|
||||
- Better calculation of available budget
|
||||
|
||||
### Fixed
|
||||
- [Issue 7377](https://github.com/firefly-iii/firefly-iii/issues/7377) Tag search was broken
|
||||
- [Issue 7389](https://github.com/firefly-iii/firefly-iii/issues/7389) Bug in charts
|
||||
- [Issue 7394](https://github.com/firefly-iii/firefly-iii/issues/7394) unique iban check was broken
|
||||
- [Issue 7427](https://github.com/firefly-iii/firefly-iii/issues/7427) API would not accept page 18 and up.
|
||||
- [Issue 7410](https://github.com/firefly-iii/firefly-iii/issues/7410) Various dark mode color fixes
|
||||
- Old documentation links fixed by @mindlessroman and @noxonad!
|
||||
|
||||
## 6.0.8 - 2023-04-16
|
||||
|
||||
### Added
|
||||
|
150
composer.lock
generated
150
composer.lock
generated
@ -1940,16 +1940,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
"version": "v10.8.0",
|
||||
"version": "v10.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/framework.git",
|
||||
"reference": "317d7ccaeb1bbf4ac3035efe225ef2746c45f3a8"
|
||||
"reference": "35078125f61ef0b125edf524de934f108d4b47fd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/317d7ccaeb1bbf4ac3035efe225ef2746c45f3a8",
|
||||
"reference": "317d7ccaeb1bbf4ac3035efe225ef2746c45f3a8",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/35078125f61ef0b125edf524de934f108d4b47fd",
|
||||
"reference": "35078125f61ef0b125edf524de934f108d4b47fd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2136,20 +2136,20 @@
|
||||
"issues": "https://github.com/laravel/framework/issues",
|
||||
"source": "https://github.com/laravel/framework"
|
||||
},
|
||||
"time": "2023-04-18T13:45:33+00:00"
|
||||
"time": "2023-04-25T13:47:18+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/passport",
|
||||
"version": "v11.8.5",
|
||||
"version": "v11.8.6",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/passport.git",
|
||||
"reference": "5417fe870a1a76628c13c79ce4c9b6fbea429bc0"
|
||||
"reference": "a75f0a92136a6cf91e5c6755374f77bf4b30c411"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/passport/zipball/5417fe870a1a76628c13c79ce4c9b6fbea429bc0",
|
||||
"reference": "5417fe870a1a76628c13c79ce4c9b6fbea429bc0",
|
||||
"url": "https://api.github.com/repos/laravel/passport/zipball/a75f0a92136a6cf91e5c6755374f77bf4b30c411",
|
||||
"reference": "a75f0a92136a6cf91e5c6755374f77bf4b30c411",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2214,20 +2214,20 @@
|
||||
"issues": "https://github.com/laravel/passport/issues",
|
||||
"source": "https://github.com/laravel/passport"
|
||||
},
|
||||
"time": "2023-04-04T14:06:53+00:00"
|
||||
"time": "2023-04-24T20:05:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/sanctum",
|
||||
"version": "v3.2.1",
|
||||
"version": "v3.2.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/sanctum.git",
|
||||
"reference": "d09d69bac55708fcd4a3b305d760e673d888baf9"
|
||||
"reference": "c8269dcff3cda261ce113ab9548a0253d709aa91"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/sanctum/zipball/d09d69bac55708fcd4a3b305d760e673d888baf9",
|
||||
"reference": "d09d69bac55708fcd4a3b305d760e673d888baf9",
|
||||
"url": "https://api.github.com/repos/laravel/sanctum/zipball/c8269dcff3cda261ce113ab9548a0253d709aa91",
|
||||
"reference": "c8269dcff3cda261ce113ab9548a0253d709aa91",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2241,6 +2241,7 @@
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.0",
|
||||
"orchestra/testbench": "^7.0|^8.0",
|
||||
"phpstan/phpstan": "^1.10",
|
||||
"phpunit/phpunit": "^9.3"
|
||||
},
|
||||
"type": "library",
|
||||
@ -2279,7 +2280,7 @@
|
||||
"issues": "https://github.com/laravel/sanctum/issues",
|
||||
"source": "https://github.com/laravel/sanctum"
|
||||
},
|
||||
"time": "2023-01-13T15:41:49+00:00"
|
||||
"time": "2023-04-26T18:55:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/serializable-closure",
|
||||
@ -2466,16 +2467,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravelcollective/html",
|
||||
"version": "v6.4.0",
|
||||
"version": "v6.4.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/LaravelCollective/html.git",
|
||||
"reference": "ac74f580459a5120079b8def0404e5d312a09504"
|
||||
"reference": "64ddfdcaeeb8d332bd98bef442bef81e39c3910b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/ac74f580459a5120079b8def0404e5d312a09504",
|
||||
"reference": "ac74f580459a5120079b8def0404e5d312a09504",
|
||||
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/64ddfdcaeeb8d332bd98bef442bef81e39c3910b",
|
||||
"reference": "64ddfdcaeeb8d332bd98bef442bef81e39c3910b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2534,7 +2535,8 @@
|
||||
"issues": "https://github.com/LaravelCollective/html/issues",
|
||||
"source": "https://github.com/LaravelCollective/html"
|
||||
},
|
||||
"time": "2023-02-13T18:15:35+00:00"
|
||||
"abandoned": "spatie/laravel-html",
|
||||
"time": "2023-04-25T02:46:11+00:00"
|
||||
},
|
||||
{
|
||||
"name": "lcobucci/clock",
|
||||
@ -3885,16 +3887,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/collision",
|
||||
"version": "v7.5.0",
|
||||
"version": "v7.5.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nunomaduro/collision.git",
|
||||
"reference": "bbbc6fb9c1ee88f8aa38e47abd15c465f946f85e"
|
||||
"reference": "76b3cabda0aabda455fc3b9db6c3615f5a87c7ff"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/bbbc6fb9c1ee88f8aa38e47abd15c465f946f85e",
|
||||
"reference": "bbbc6fb9c1ee88f8aa38e47abd15c465f946f85e",
|
||||
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/76b3cabda0aabda455fc3b9db6c3615f5a87c7ff",
|
||||
"reference": "76b3cabda0aabda455fc3b9db6c3615f5a87c7ff",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3904,19 +3906,19 @@
|
||||
"symfony/console": "^6.2.8"
|
||||
},
|
||||
"conflict": {
|
||||
"phpunit/phpunit": "<10.1.0"
|
||||
"phpunit/phpunit": "<10.1.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"brianium/paratest": "^7.1.3",
|
||||
"laravel/framework": "^10.7.1",
|
||||
"laravel/pint": "^1.8.0",
|
||||
"laravel/framework": "^10.8.0",
|
||||
"laravel/pint": "^1.9.0",
|
||||
"laravel/sail": "^1.21.4",
|
||||
"laravel/sanctum": "^3.2.1",
|
||||
"laravel/tinker": "^2.8.1",
|
||||
"nunomaduro/larastan": "^2.5.1",
|
||||
"orchestra/testbench-core": "^8.4.2",
|
||||
"pestphp/pest": "^2.5.0",
|
||||
"phpunit/phpunit": "^10.1.0",
|
||||
"nunomaduro/larastan": "^2.6.0",
|
||||
"orchestra/testbench-core": "^8.5.0",
|
||||
"pestphp/pest": "^2.5.2",
|
||||
"phpunit/phpunit": "^10.1.1",
|
||||
"sebastian/environment": "^6.0.1",
|
||||
"spatie/laravel-ignition": "^2.1.0"
|
||||
},
|
||||
@ -3977,7 +3979,7 @@
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2023-04-14T10:39:16+00:00"
|
||||
"time": "2023-04-22T22:12:40+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/termwind",
|
||||
@ -5633,16 +5635,16 @@
|
||||
},
|
||||
{
|
||||
"name": "spatie/ignition",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/spatie/ignition.git",
|
||||
"reference": "4db9c9626e4d7745efbe0b512157326190b41b65"
|
||||
"reference": "fbcfcabc44e506e40c4d72fd4ddf465e272a600e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/spatie/ignition/zipball/4db9c9626e4d7745efbe0b512157326190b41b65",
|
||||
"reference": "4db9c9626e4d7745efbe0b512157326190b41b65",
|
||||
"url": "https://api.github.com/repos/spatie/ignition/zipball/fbcfcabc44e506e40c4d72fd4ddf465e272a600e",
|
||||
"reference": "fbcfcabc44e506e40c4d72fd4ddf465e272a600e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -5673,7 +5675,7 @@
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.4.x-dev"
|
||||
"dev-main": "1.5.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
@ -5712,7 +5714,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-04-12T09:07:50+00:00"
|
||||
"time": "2023-04-27T08:40:07+00:00"
|
||||
},
|
||||
{
|
||||
"name": "spatie/laravel-ignition",
|
||||
@ -7691,32 +7693,32 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/psr-http-message-bridge",
|
||||
"version": "v2.1.4",
|
||||
"version": "v2.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/psr-http-message-bridge.git",
|
||||
"reference": "a125b93ef378c492e274f217874906fb9babdebb"
|
||||
"reference": "28a732c05bbad801304ad5a5c674cf2970508993"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
|
||||
"reference": "a125b93ef378c492e274f217874906fb9babdebb",
|
||||
"url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
|
||||
"reference": "28a732c05bbad801304ad5a5c674cf2970508993",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"psr/http-message": "^1.0",
|
||||
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
|
||||
"php": ">=7.2.5",
|
||||
"psr/http-message": "^1.0 || ^2.0",
|
||||
"symfony/http-foundation": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"nyholm/psr7": "^1.1",
|
||||
"psr/log": "^1.1 || ^2 || ^3",
|
||||
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
|
||||
"symfony/config": "^4.4 || ^5.0 || ^6.0",
|
||||
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
|
||||
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
|
||||
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
|
||||
"symfony/phpunit-bridge": "^5.4@dev || ^6.0"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/config": "^5.4 || ^6.0",
|
||||
"symfony/event-dispatcher": "^5.4 || ^6.0",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/http-kernel": "^5.4 || ^6.0",
|
||||
"symfony/phpunit-bridge": "^6.2"
|
||||
},
|
||||
"suggest": {
|
||||
"nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
|
||||
@ -7724,7 +7726,7 @@
|
||||
"type": "symfony-bridge",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "2.1-dev"
|
||||
"dev-main": "2.2-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
@ -7759,7 +7761,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/symfony/psr-http-message-bridge/issues",
|
||||
"source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
|
||||
"source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -7775,7 +7777,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-11-28T22:46:34+00:00"
|
||||
"time": "2023-04-21T08:40:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/routing",
|
||||
@ -9867,16 +9869,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpdoc-parser",
|
||||
"version": "1.18.1",
|
||||
"version": "1.20.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpstan/phpdoc-parser.git",
|
||||
"reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f"
|
||||
"reference": "6c04009f6cae6eda2f040745b6b846080ef069c2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/22dcdfd725ddf99583bfe398fc624ad6c5004a0f",
|
||||
"reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f",
|
||||
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6c04009f6cae6eda2f040745b6b846080ef069c2",
|
||||
"reference": "6c04009f6cae6eda2f040745b6b846080ef069c2",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -9906,9 +9908,9 @@
|
||||
"description": "PHPDoc parser with support for nullable, intersection and generic types",
|
||||
"support": {
|
||||
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
|
||||
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.18.1"
|
||||
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.3"
|
||||
},
|
||||
"time": "2023-04-07T11:51:11+00:00"
|
||||
"time": "2023-04-25T09:01:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
@ -10071,16 +10073,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-code-coverage",
|
||||
"version": "10.1.0",
|
||||
"version": "10.1.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||
"reference": "fc4f5ee614fa82d50ecf9014b51af0a9561f3df8"
|
||||
"reference": "884a0da7f9f46f28b2cb69134217fd810b793974"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/fc4f5ee614fa82d50ecf9014b51af0a9561f3df8",
|
||||
"reference": "fc4f5ee614fa82d50ecf9014b51af0a9561f3df8",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/884a0da7f9f46f28b2cb69134217fd810b793974",
|
||||
"reference": "884a0da7f9f46f28b2cb69134217fd810b793974",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -10099,7 +10101,7 @@
|
||||
"theseer/tokenizer": "^1.2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^10.0"
|
||||
"phpunit/phpunit": "^10.1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-pcov": "PHP extension that provides line coverage",
|
||||
@ -10137,7 +10139,7 @@
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
||||
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
|
||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.0"
|
||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -10145,7 +10147,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-04-13T07:08:27+00:00"
|
||||
"time": "2023-04-17T12:15:40+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-file-iterator",
|
||||
@ -10390,16 +10392,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/phpunit",
|
||||
"version": "10.1.0",
|
||||
"version": "10.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||
"reference": "5a477aea03e61329132935689ae2d73f418f5e25"
|
||||
"reference": "6f0cd95be71add539f8fd2be25b2a4a29789000b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5a477aea03e61329132935689ae2d73f418f5e25",
|
||||
"reference": "5a477aea03e61329132935689ae2d73f418f5e25",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6f0cd95be71add539f8fd2be25b2a4a29789000b",
|
||||
"reference": "6f0cd95be71add539f8fd2be25b2a4a29789000b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -10413,7 +10415,7 @@
|
||||
"phar-io/manifest": "^2.0.3",
|
||||
"phar-io/version": "^3.0.2",
|
||||
"php": ">=8.1",
|
||||
"phpunit/php-code-coverage": "^10.1",
|
||||
"phpunit/php-code-coverage": "^10.1.1",
|
||||
"phpunit/php-file-iterator": "^4.0",
|
||||
"phpunit/php-invoker": "^4.0",
|
||||
"phpunit/php-text-template": "^3.0",
|
||||
@ -10471,7 +10473,7 @@
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.1.0"
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.1.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -10487,7 +10489,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-04-14T05:15:09+00:00"
|
||||
"time": "2023-04-22T07:38:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
|
@ -107,7 +107,7 @@ return [
|
||||
'webhooks' => true,
|
||||
'handle_debts' => true,
|
||||
],
|
||||
'version' => '6.0.8',
|
||||
'version' => '6.0.9',
|
||||
'api_version' => '2.0.1',
|
||||
'db_version' => 19,
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@popperjs/core": "^2.11.2",
|
||||
"@quasar/extras": "^1.16.2",
|
||||
"@quasar/extras": "^1.16.3",
|
||||
"apexcharts": "^3.32.1",
|
||||
"axios": "^0.21.1",
|
||||
"axios-cache-adapter": "^2.7.3",
|
||||
|
16
frontend/src/i18n/es_ES/index.js
vendored
16
frontend/src/i18n/es_ES/index.js
vendored
@ -152,15 +152,15 @@ export default {
|
||||
"rule_action_remove_tag_choice": "Quitar etiqueta ..",
|
||||
"rule_action_remove_all_tags_choice": "Eliminar todas las etiquetas",
|
||||
"rule_action_set_description_choice": "A\u00f1adir descripci\u00f3n ..",
|
||||
"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 ..",
|
||||
"rule_action_set_source_account_choice": "Set source account to ..",
|
||||
"rule_action_set_destination_account_choice": "Set destination account to ..",
|
||||
"rule_action_append_notes_choice": "Append notes with ..",
|
||||
"rule_action_prepend_notes_choice": "Prepend notes with ..",
|
||||
"rule_action_update_piggy_choice": "A\u00f1adir \/ quitar el importe de la transacci\u00f3n de la hucha ..",
|
||||
"rule_action_append_description_choice": "A\u00f1adir descripci\u00f3n con ..",
|
||||
"rule_action_prepend_description_choice": "Anteponer descripci\u00f3n con ..",
|
||||
"rule_action_set_source_account_choice": "Establecer cuenta de origen ..",
|
||||
"rule_action_set_destination_account_choice": "Establecer cuenta de destino ..",
|
||||
"rule_action_append_notes_choice": "A\u00f1adir notas con ..",
|
||||
"rule_action_prepend_notes_choice": "Anteponer notas con ..",
|
||||
"rule_action_clear_notes_choice": "Eliminar cualquier nota",
|
||||
"rule_action_set_notes_choice": "Set notes to ..",
|
||||
"rule_action_set_notes_choice": "Establecer nota ..",
|
||||
"rule_action_link_to_bill_choice": "Enlazar a una factura ..",
|
||||
"rule_action_convert_deposit_choice": "Convertir transacci\u00f3n en un ingreso",
|
||||
"rule_action_convert_withdrawal_choice": "Convierta esta transacci\u00f3n en un gasto",
|
||||
|
8
frontend/src/i18n/zh_CN/index.js
vendored
8
frontend/src/i18n/zh_CN/index.js
vendored
@ -148,10 +148,10 @@ export default {
|
||||
"rule_action_clear_category_choice": "\u6e05\u7a7a\u4efb\u4f55\u5206\u7c7b",
|
||||
"rule_action_set_budget_choice": "Set budget to ..",
|
||||
"rule_action_clear_budget_choice": "\u6e05\u7a7a\u4efb\u4f55\u9884\u7b97",
|
||||
"rule_action_add_tag_choice": "Add tag ..",
|
||||
"rule_action_remove_tag_choice": "Remove tag ..",
|
||||
"rule_action_add_tag_choice": "\u6dfb\u52a0\u6807\u7b7e..",
|
||||
"rule_action_remove_tag_choice": "\u79fb\u9664\u6807\u7b7e..",
|
||||
"rule_action_remove_all_tags_choice": "\u79fb\u9664\u6240\u6709\u6807\u7b7e",
|
||||
"rule_action_set_description_choice": "Set description to ..",
|
||||
"rule_action_set_description_choice": "\u8bbe\u7f6e\u63cf\u8ff0\u4e3a",
|
||||
"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 ..",
|
||||
@ -160,7 +160,7 @@ export default {
|
||||
"rule_action_append_notes_choice": "Append notes with ..",
|
||||
"rule_action_prepend_notes_choice": "Prepend notes with ..",
|
||||
"rule_action_clear_notes_choice": "\u79fb\u9664\u6240\u6709\u5907\u6ce8",
|
||||
"rule_action_set_notes_choice": "Set notes to ..",
|
||||
"rule_action_set_notes_choice": "\u8bbe\u7f6e\u5907\u6ce8\u4e3a..",
|
||||
"rule_action_link_to_bill_choice": "\u5173\u8054\u81f3\u8d26\u5355\u2026",
|
||||
"rule_action_convert_deposit_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u6536\u5165",
|
||||
"rule_action_convert_withdrawal_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u652f\u51fa",
|
||||
|
@ -338,7 +338,7 @@ page container: q-ma-xs (margin all, xs) AND q-mb-md to give the page content so
|
||||
<q-footer class="bg-grey-8 text-white" bordered>
|
||||
<q-toolbar>
|
||||
<div>
|
||||
<small>Firefly III v v6.0.8 © James Cole, AGPL-3.0-or-later.</small>
|
||||
<small>Firefly III v v6.0.9 © James Cole, AGPL-3.0-or-later.</small>
|
||||
</div>
|
||||
</q-toolbar>
|
||||
</q-footer>
|
||||
|
@ -1437,10 +1437,10 @@
|
||||
core-js "^3.6.5"
|
||||
core-js-compat "^3.6.5"
|
||||
|
||||
"@quasar/extras@^1.16.2":
|
||||
version "1.16.2"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/extras/-/extras-1.16.2.tgz#fcc6374a882253051f9d7302cb9ba828f0010cdf"
|
||||
integrity sha512-spDc1DrwxGts0MjmOAJ11xpxJANhCI1vEadxaw89wRQJ/QfKd0HZrwN7uN1U15cRozGRkJpdbsnP4cVXpkPysA==
|
||||
"@quasar/extras@^1.16.3":
|
||||
version "1.16.3"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/extras/-/extras-1.16.3.tgz#72216e2d450a2ee70613957da88191339b90de41"
|
||||
integrity sha512-c9p2j4KWrWqOcCcCD9IMjgPZzAiXKSMEMc3uYbqa5mHlEJ1kl88OMaeJUcmP+INRQ29AFSEQ9tZE20jLmdnLXw==
|
||||
|
||||
"@quasar/fastclick@1.1.5":
|
||||
version "1.1.5"
|
||||
|
38
phpunit.xml
38
phpunit.xml
@ -18,24 +18,22 @@
|
||||
~ You should have received a copy of the GNU Affero General Public License
|
||||
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php"
|
||||
colors="true" stopOnFailure="true" processIsolation="false"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache"
|
||||
backupStaticProperties="false">
|
||||
<coverage>
|
||||
<include>
|
||||
<directory suffix=".php">./app</directory>
|
||||
</include>
|
||||
</coverage>
|
||||
<testsuites>
|
||||
<testsuite name="Api">
|
||||
<directory suffix="Test.php">./tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="QUEUE_DRIVER" value="sync"/>
|
||||
</php>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" stopOnFailure="true" processIsolation="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
|
||||
<coverage/>
|
||||
<testsuites>
|
||||
<testsuite name="Api">
|
||||
<directory suffix="Test.php">./tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="QUEUE_DRIVER" value="sync"/>
|
||||
</php>
|
||||
<source>
|
||||
<include>
|
||||
<directory suffix=".php">./app</directory>
|
||||
</include>
|
||||
</source>
|
||||
</phpunit>
|
||||
|
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/profile.js
vendored
2
public/v1/js/profile.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/create.js
vendored
2
public/v1/js/webhooks/create.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/edit.js
vendored
2
public/v1/js/webhooks/edit.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/index.js
vendored
2
public/v1/js/webhooks/index.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/show.js
vendored
2
public/v1/js/webhooks/show.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
BIN
public/v3/fonts/fa-brands-400.7be2266f.woff2
Normal file
BIN
public/v3/fonts/fa-brands-400.7be2266f.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/v3/fonts/fa-regular-400.8bedd7cf.woff2
Normal file
BIN
public/v3/fonts/fa-regular-400.8bedd7cf.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/v3/fonts/fa-solid-900.bdb9e232.woff2
Normal file
BIN
public/v3/fonts/fa-solid-900.bdb9e232.woff2
Normal file
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><base href=/v3/ ><title>Firefly III</title><meta charset=utf-8><meta content="Personal finances manager" name=description><meta content="telephone=no" name=format-detection><meta content=no name=msapplication-tap-highlight><meta content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" name=viewport><link href=favicon-32x32.png rel=icon sizes=32x32 type=image/png><link href=favicon-16x16.png rel=icon sizes=16x16 type=image/png><link href=maskable76.png rel=apple-touch-icon sizes=76x76><link href=maskable120.png rel=apple-touch-icon sizes=120x120><link href=maskable152.png rel=apple-touch-icon sizes=152x152><link href=apple-touch-icon.png rel=apple-touch-icon sizes=180x180><link color=#3c8dbc href=safari-pinned-tab.svg rel=mask-icon><link href=maskable192.png rel=icon sizes=192x192><link href=maskable128.png rel=icon sizes=128x128><link href=manifest.webmanifest rel=manifest><meta content=#1e6581 name=msapplication-TileColor><meta content=maskable512.png name=msapplication-TileImage><meta content=no name=msapplication-tap-highlight><meta content="Firefly III" name=application-name><meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name=robots><meta content=yes name=apple-mobile-web-app-capable><meta content="Firefly III" name=apple-mobile-web-app-title><meta content="Firefly III" name=application-name><meta content=#3c8dbc name=msapplication-TileColor><meta content="mstile-144x144.png?v=3e8AboOwbd" name=msapplication-TileImage><meta content=#3c8dbc name=theme-color><script defer src=/v3/js/vendor.77517468.js></script><script defer src=/v3/js/app.2ffaea83.js></script><link href=/v3/css/vendor.ab47bc61.css rel=stylesheet><link href=/v3/css/app.50c7ba73.css rel=stylesheet></head><body><div id=q-app></div></body></html>
|
||||
<!DOCTYPE html><html><head><base href=/v3/ ><title>Firefly III</title><meta charset=utf-8><meta content="Personal finances manager" name=description><meta content="telephone=no" name=format-detection><meta content=no name=msapplication-tap-highlight><meta content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" name=viewport><link href=favicon-32x32.png rel=icon sizes=32x32 type=image/png><link href=favicon-16x16.png rel=icon sizes=16x16 type=image/png><link href=maskable76.png rel=apple-touch-icon sizes=76x76><link href=maskable120.png rel=apple-touch-icon sizes=120x120><link href=maskable152.png rel=apple-touch-icon sizes=152x152><link href=apple-touch-icon.png rel=apple-touch-icon sizes=180x180><link color=#3c8dbc href=safari-pinned-tab.svg rel=mask-icon><link href=maskable192.png rel=icon sizes=192x192><link href=maskable128.png rel=icon sizes=128x128><link href=manifest.webmanifest rel=manifest><meta content=#1e6581 name=msapplication-TileColor><meta content=maskable512.png name=msapplication-TileImage><meta content=no name=msapplication-tap-highlight><meta content="Firefly III" name=application-name><meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name=robots><meta content=yes name=apple-mobile-web-app-capable><meta content="Firefly III" name=apple-mobile-web-app-title><meta content="Firefly III" name=application-name><meta content=#3c8dbc name=msapplication-TileColor><meta content="mstile-144x144.png?v=3e8AboOwbd" name=msapplication-TileImage><meta content=#3c8dbc name=theme-color><script defer src=/v3/js/vendor.77517468.js></script><script defer src=/v3/js/app.5f590096.js></script><link href=/v3/css/vendor.04b47167.css rel=stylesheet><link href=/v3/css/app.50c7ba73.css rel=stylesheet></head><body><div id=q-app></div></body></html>
|
1
public/v3/js/456.94119259.js
vendored
Normal file
1
public/v3/js/456.94119259.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/v3/js/8309.a9c6a169.js
vendored
1
public/v3/js/8309.a9c6a169.js
vendored
File diff suppressed because one or more lines are too long
1
public/v3/js/app.2ffaea83.js
vendored
1
public/v3/js/app.2ffaea83.js
vendored
File diff suppressed because one or more lines are too long
1
public/v3/js/app.5f590096.js
vendored
Normal file
1
public/v3/js/app.5f590096.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -9,8 +9,8 @@
|
||||
"split": "\u62c6\u5206",
|
||||
"single_split": "\u62c6\u5206",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">\u4ea4\u6613 #{ID} (\u201c{title}\u201d)<\/a> \u5df2\u4fdd\u5b58\u3002",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") has been updated.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">\u63a8\u9001 #{ID} (\"{title}\")<\/a> \u5df2\u4fdd\u5b58.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">\u63a8\u9001 #{ID}<\/a> (\"{title}\") \u5df2\u66f4\u65b0.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> (\"{title}\") has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">\u4ea4\u6613 #{ID}<\/a> \u5df2\u4fdd\u5b58\u3002",
|
||||
"transaction_journal_information": "\u4ea4\u6613\u4fe1\u606f",
|
||||
@ -107,16 +107,16 @@
|
||||
"inspect": "\u68c0\u67e5",
|
||||
"create_new_webhook": "\u521b\u5efa\u65b0 Webhook",
|
||||
"webhooks": "Webhooks",
|
||||
"webhook_trigger_form_help": "Indicate on what event the webhook will trigger",
|
||||
"webhook_response_form_help": "Indicate what the webhook must submit to the URL.",
|
||||
"webhook_delivery_form_help": "Which format the webhook must deliver data in.",
|
||||
"webhook_trigger_form_help": "\u63a8\u9001\u4e8b\u4ef6\u53d1\u751f\u65f6\u7684\u89e6\u53d1\u6761\u4ef6",
|
||||
"webhook_response_form_help": "\u63a8\u9001\u5fc5\u987b\u63d0\u4ea4\u7ed9URL\u7684\u5185\u5bb9",
|
||||
"webhook_delivery_form_help": "\u63a8\u9001\u91c7\u7528\u54ea\u79cd\u683c\u5f0f\u53d1\u9001\u6570\u636e",
|
||||
"webhook_active_form_help": "Webhook \u5fc5\u987b\u662f\u6fc0\u6d3b\u72b6\u6001\uff0c\u5426\u5219\u4e0d\u4f1a\u88ab\u8c03\u7528\u3002",
|
||||
"edit_webhook_js": "\u7f16\u8f91 webhook \u201c{title}\u201d",
|
||||
"webhook_was_triggered": "The webhook was triggered on the indicated transaction. Please wait for results to appear.",
|
||||
"webhook_was_triggered": "\u5728\u6307\u5b9a\u7684\u4ea4\u6613\u4e2d\u89e6\u53d1\u4e86\u63a8\u9001\uff0c\u8bf7\u7b49\u5f85\u663e\u793a\u7ed3\u679c",
|
||||
"view_message": "\u67e5\u770b\u6d88\u606f",
|
||||
"view_attempts": "\u67e5\u770b\u5931\u8d25\u7684\u5c1d\u8bd5",
|
||||
"message_content_title": "Webhook \u6d88\u606f\u5185\u5bb9",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"message_content_help": "\u8fd9\u662f\u4f7f\u7528\u63a8\u9001\u53d1\u9001\uff08\u6216\u5c1d\u8bd5\uff09\u7684\u6d88\u606f\u5185\u5bb9",
|
||||
"attempt_content_title": "Webhook \u5c1d\u8bd5",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
@ -138,9 +138,9 @@
|
||||
"payment_date": "\u4ed8\u6b3e\u65e5\u671f",
|
||||
"invoice_date": "\u53d1\u7968\u65e5\u671f",
|
||||
"internal_reference": "\u5185\u90e8\u5f15\u7528",
|
||||
"webhook_response": "Response",
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
"webhook_response": "\u54cd\u5e94\u5185\u5bb9",
|
||||
"webhook_trigger": "\u89e6\u53d1\u6761\u4ef6",
|
||||
"webhook_delivery": "\u53d1\u9001\u683c\u5f0f"
|
||||
},
|
||||
"list": {
|
||||
"active": "\u662f\u5426\u542f\u7528\uff1f",
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Не може да използвате тази сметка като разходна сметка.',
|
||||
'generic_invalid_destination' => 'Не може да използвате тази сметка като приходна сметка.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute трябва да е по-голямо или равно на :value.',
|
||||
'gt.numeric' => ':attribute трябва да бъде по-голям от :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'No pots fer servir aquest compte com a compte d\'origen.',
|
||||
'generic_invalid_destination' => 'No pots fer servir aquest compte com a compte de destí.',
|
||||
|
||||
'generic_no_source' => 'Has d\'enviar la informació del compte d\'origen.',
|
||||
'generic_no_destination' => 'Has d\'enviar la informació del compte de destí.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'El camp :attribute ha de ser més gran o igual que :value.',
|
||||
'gt.numeric' => 'El camp :attribute ha de ser més gran que :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Tento účet nelze použít jako zdrojový účet.',
|
||||
'generic_invalid_destination' => 'Tento účet nelze použít jako cílový účet.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Je třeba, aby :attribute byl větší nebo roven :value.',
|
||||
'gt.numeric' => 'Je třeba, aby :attribute byl větší než :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Du kan ikke bruge denne konto som kildekonto.',
|
||||
'generic_invalid_destination' => 'Du kan ikke bruge denne konto som destinationskonto.',
|
||||
|
||||
'generic_no_source' => 'Angivelse af kilde konto er krævet.',
|
||||
'generic_no_destination' => 'Angivelse af destinations konto er krævet.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Attributten :attribute skal være større end eller lig med :value.',
|
||||
'gt.numeric' => 'Attributten :attribute skal være større end :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Sie können dieses Konto nicht als Quellkonto verwenden.',
|
||||
'generic_invalid_destination' => 'Sie können dieses Konto nicht als Zielkonto verwenden.',
|
||||
|
||||
'generic_no_source' => 'Sie müssen Informationen zum Quellkonto angeben.',
|
||||
'generic_no_destination' => 'Sie müssen Informationen zum Zielkonto angeben.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute muss größer oder gleich :value sein.',
|
||||
'gt.numeric' => ':attribute muss größer als :value sein.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Δεν μπορείτε να χρησιμοποιήσετε αυτό το λογαριασμό ως λογαριασμό προέλευσης.',
|
||||
'generic_invalid_destination' => 'Δεν μπορείτε να χρησιμοποιήσετε αυτό το λογαριασμό ως λογαριασμό προορισμού.',
|
||||
|
||||
'generic_no_source' => 'Πρέπει να εισάγετε στοιχεία για τον λογαριασμό προέλευσης.',
|
||||
'generic_no_destination' => 'Πρέπει να εισάγετε στοιχεία για τον λογαριασμό προορισμού.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο με :value.',
|
||||
'gt.numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο από :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||
|
@ -951,170 +951,170 @@ return [
|
||||
'rule_trigger_account_is' => 'Cualquiera de las cuentas es exactamente:trigger_value',
|
||||
'rule_trigger_account_contains_choice' => 'Cualquier cuenta contiene..',
|
||||
'rule_trigger_account_contains' => 'Cualquier cuenta contiene ":trigger_value " "',
|
||||
'rule_trigger_account_ends_choice' => 'Either account ends with..',
|
||||
'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"',
|
||||
'rule_trigger_account_starts_choice' => 'Either account starts with..',
|
||||
'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"',
|
||||
'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..',
|
||||
'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"',
|
||||
'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..',
|
||||
'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"',
|
||||
'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..',
|
||||
'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"',
|
||||
'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..',
|
||||
'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"',
|
||||
'rule_trigger_account_ends_choice' => 'Cualquier cuenta termina con..',
|
||||
'rule_trigger_account_ends' => 'Cualquier cuenta termina con ":trigger_value"',
|
||||
'rule_trigger_account_starts_choice' => 'Cualquiera cuenta comienza con..',
|
||||
'rule_trigger_account_starts' => 'Cualquiera cuenta comienza con ":trigger_value"',
|
||||
'rule_trigger_account_nr_is_choice' => 'Cualquier número de cuenta / IBAN es..',
|
||||
'rule_trigger_account_nr_is' => 'Cualquier número de cuenta / IBAN es ":trigger_value"',
|
||||
'rule_trigger_account_nr_contains_choice' => 'Cualquiera de los números de cuenta / IBAN contiene..',
|
||||
'rule_trigger_account_nr_contains' => 'Cualquiera de los números de cuenta / IBAN contiene ":trigger_value"',
|
||||
'rule_trigger_account_nr_ends_choice' => 'Cualquiera de los números de cuenta / IBAN termina en..',
|
||||
'rule_trigger_account_nr_ends' => 'Cualquiera de los números de cuenta / IBAN termina en ":trigger_value"',
|
||||
'rule_trigger_account_nr_starts_choice' => 'Cualquiera de los números de cuenta / IBAN comienza por..',
|
||||
'rule_trigger_account_nr_starts' => 'Cualquiera de los números de cuenta / IBAN comienza por ":trigger_value"',
|
||||
'rule_trigger_category_contains_choice' => 'La categoría contiene..',
|
||||
'rule_trigger_category_contains' => 'Category contains ":trigger_value"',
|
||||
'rule_trigger_category_contains' => 'La categoría contiene ":trigger_value"',
|
||||
'rule_trigger_category_ends_choice' => 'La categoría termina con..',
|
||||
'rule_trigger_category_ends' => 'Category ends with ":trigger_value"',
|
||||
'rule_trigger_category_ends' => 'La categoría termina con ":trigger_value"',
|
||||
'rule_trigger_category_starts_choice' => 'La categoría empieza por..',
|
||||
'rule_trigger_category_starts' => 'Category starts with ":trigger_value"',
|
||||
'rule_trigger_category_starts' => 'La categoría comienza con ":trigger_value"',
|
||||
'rule_trigger_budget_contains_choice' => 'El presupuesto contiene..',
|
||||
'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"',
|
||||
'rule_trigger_budget_contains' => 'El presupuesto contiene ":trigger_value"',
|
||||
'rule_trigger_budget_ends_choice' => 'El presupuesto termina con..',
|
||||
'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"',
|
||||
'rule_trigger_budget_ends' => 'El presupuesto termina con ":trigger_value"',
|
||||
'rule_trigger_budget_starts_choice' => 'El presupuesto comienza con..',
|
||||
'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"',
|
||||
'rule_trigger_budget_starts' => 'El presupuesto comienza con ":trigger_value"',
|
||||
'rule_trigger_bill_contains_choice' => 'La factura contiene..',
|
||||
'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"',
|
||||
'rule_trigger_bill_contains' => 'La factura contiene ":trigger_value"',
|
||||
'rule_trigger_bill_ends_choice' => 'La factura termina con..',
|
||||
'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"',
|
||||
'rule_trigger_bill_ends' => 'La factura termina con ":trigger_value"',
|
||||
'rule_trigger_bill_starts_choice' => 'La factura comienza con..',
|
||||
'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"',
|
||||
'rule_trigger_bill_starts' => 'La factura comienza con ":trigger_value"',
|
||||
'rule_trigger_external_id_contains_choice' => 'El ID externo contiene..',
|
||||
'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"',
|
||||
'rule_trigger_external_id_contains' => 'El ID externo contiene ":trigger_value"',
|
||||
'rule_trigger_external_id_ends_choice' => 'El ID externo termina con..',
|
||||
'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"',
|
||||
'rule_trigger_external_id_starts_choice' => 'External ID starts with..',
|
||||
'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"',
|
||||
'rule_trigger_external_id_ends' => 'El ID externo termina con ":trigger_value"',
|
||||
'rule_trigger_external_id_starts_choice' => 'ID externo comienza con..',
|
||||
'rule_trigger_external_id_starts' => 'ID externo comienza con ":trigger_value"',
|
||||
'rule_trigger_internal_reference_contains_choice' => 'La referencia interna contiene..',
|
||||
'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"',
|
||||
'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..',
|
||||
'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"',
|
||||
'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..',
|
||||
'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"',
|
||||
'rule_trigger_internal_reference_contains' => 'La referencia interna contiene ":trigger_value"',
|
||||
'rule_trigger_internal_reference_ends_choice' => 'La referencia interna termina con..',
|
||||
'rule_trigger_internal_reference_ends' => 'La referencia interna termina con ":trigger_value"',
|
||||
'rule_trigger_internal_reference_starts_choice' => 'Referencia interna comienza con..',
|
||||
'rule_trigger_internal_reference_starts' => 'La referencia interna comienza con ":trigger_value"',
|
||||
'rule_trigger_external_url_is_choice' => 'La URL externa es..',
|
||||
'rule_trigger_external_url_is' => 'External URL is ":trigger_value"',
|
||||
'rule_trigger_external_url_contains_choice' => 'External URL contains..',
|
||||
'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"',
|
||||
'rule_trigger_external_url_ends_choice' => 'External URL ends with..',
|
||||
'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"',
|
||||
'rule_trigger_external_url_starts_choice' => 'External URL starts with..',
|
||||
'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"',
|
||||
'rule_trigger_external_url_is' => 'La URL externa es ":trigger_value"',
|
||||
'rule_trigger_external_url_contains_choice' => 'La URL externa contiene..',
|
||||
'rule_trigger_external_url_contains' => 'La URL externa contiene ":trigger_value"',
|
||||
'rule_trigger_external_url_ends_choice' => 'La URL externa termina con..',
|
||||
'rule_trigger_external_url_ends' => 'La URL externa termina con ":trigger_value"',
|
||||
'rule_trigger_external_url_starts_choice' => 'La URL externa comienza con..',
|
||||
'rule_trigger_external_url_starts' => 'La URL externa comienza con ":trigger_value"',
|
||||
'rule_trigger_has_no_attachments_choice' => 'No tiene adjuntos',
|
||||
'rule_trigger_has_no_attachments' => 'Transaction has no attachments',
|
||||
'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..',
|
||||
'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"',
|
||||
'rule_trigger_interest_date_on_choice' => 'Interest date is on..',
|
||||
'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"',
|
||||
'rule_trigger_interest_date_before_choice' => 'Interest date is before..',
|
||||
'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"',
|
||||
'rule_trigger_interest_date_after_choice' => 'Interest date is after..',
|
||||
'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"',
|
||||
'rule_trigger_book_date_on_choice' => 'Book date is on..',
|
||||
'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"',
|
||||
'rule_trigger_book_date_before_choice' => 'Book date is before..',
|
||||
'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"',
|
||||
'rule_trigger_book_date_after_choice' => 'Book date is after..',
|
||||
'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"',
|
||||
'rule_trigger_process_date_on_choice' => 'Process date is on..',
|
||||
'rule_trigger_process_date_on' => 'Process date is ":trigger_value"',
|
||||
'rule_trigger_process_date_before_choice' => 'Process date is before..',
|
||||
'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"',
|
||||
'rule_trigger_process_date_after_choice' => 'Process date is after..',
|
||||
'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"',
|
||||
'rule_trigger_due_date_on_choice' => 'Due date is on..',
|
||||
'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"',
|
||||
'rule_trigger_due_date_before_choice' => 'Due date is before..',
|
||||
'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"',
|
||||
'rule_trigger_due_date_after_choice' => 'Due date is after..',
|
||||
'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"',
|
||||
'rule_trigger_payment_date_on_choice' => 'Payment date is on..',
|
||||
'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"',
|
||||
'rule_trigger_payment_date_before_choice' => 'Payment date is before..',
|
||||
'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"',
|
||||
'rule_trigger_payment_date_after_choice' => 'Payment date is after..',
|
||||
'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"',
|
||||
'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..',
|
||||
'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"',
|
||||
'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..',
|
||||
'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"',
|
||||
'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..',
|
||||
'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"',
|
||||
'rule_trigger_has_no_attachments' => 'La transacción no tiene adjuntos',
|
||||
'rule_trigger_recurrence_id_choice' => 'El ID de la transacción recurrente es..',
|
||||
'rule_trigger_recurrence_id' => 'El ID de la transacción recurrente es ":trigger_value"',
|
||||
'rule_trigger_interest_date_on_choice' => 'La fecha de interés es el..',
|
||||
'rule_trigger_interest_date_on' => 'La fecha de interés es el ":trigger_value"',
|
||||
'rule_trigger_interest_date_before_choice' => 'La fecha de interés es antes del..',
|
||||
'rule_trigger_interest_date_before' => 'La fecha de interés es anterior al ":trigger_value"',
|
||||
'rule_trigger_interest_date_after_choice' => 'La fecha de interés es después del..',
|
||||
'rule_trigger_interest_date_after' => 'La fecha de interés es posterior al ":trigger_value"',
|
||||
'rule_trigger_book_date_on_choice' => 'La fecha de registro es el..',
|
||||
'rule_trigger_book_date_on' => 'La fecha del libro es el ":trigger_value"',
|
||||
'rule_trigger_book_date_before_choice' => 'La fecha del libro es anterior al..',
|
||||
'rule_trigger_book_date_before' => 'La fecha del libro es anterior al ":trigger_value"',
|
||||
'rule_trigger_book_date_after_choice' => 'La fecha del libro es posterior al..',
|
||||
'rule_trigger_book_date_after' => 'La fecha del libro es posterior al ":trigger_value"',
|
||||
'rule_trigger_process_date_on_choice' => 'La fecha de procesamiento es el..',
|
||||
'rule_trigger_process_date_on' => 'La fecha de procesamiento es el ":trigger_value"',
|
||||
'rule_trigger_process_date_before_choice' => 'La fecha de procesamientos es antes del..',
|
||||
'rule_trigger_process_date_before' => 'La fecha de procesamiento es antes del ":trigger_value"',
|
||||
'rule_trigger_process_date_after_choice' => 'La fecha de procesamiento es después del..',
|
||||
'rule_trigger_process_date_after' => 'La fecha de procesamiento es después del ":trigger_value"',
|
||||
'rule_trigger_due_date_on_choice' => 'La fecha de vencimiento es el..',
|
||||
'rule_trigger_due_date_on' => 'La fecha de vencimiento es el ":trigger_value"',
|
||||
'rule_trigger_due_date_before_choice' => 'La fecha de vencimiento es anterior al..',
|
||||
'rule_trigger_due_date_before' => 'La fecha de vencimiento es anterior al ":trigger_value"',
|
||||
'rule_trigger_due_date_after_choice' => 'La fecha de vencimiento es posterior al..',
|
||||
'rule_trigger_due_date_after' => 'La fecha de vencimiento es posterior al ":trigger_value"',
|
||||
'rule_trigger_payment_date_on_choice' => 'La fecha de pago es el..',
|
||||
'rule_trigger_payment_date_on' => 'La fecha de pago es el ":trigger_value"',
|
||||
'rule_trigger_payment_date_before_choice' => 'La fecha de pago es antes del..',
|
||||
'rule_trigger_payment_date_before' => 'La fecha de pago es anterior al ":trigger_value"',
|
||||
'rule_trigger_payment_date_after_choice' => 'La fecha de pago es posterior al..',
|
||||
'rule_trigger_payment_date_after' => 'La fecha de pago es posterior al ":trigger_value"',
|
||||
'rule_trigger_invoice_date_on_choice' => 'La fecha de la factura es el..',
|
||||
'rule_trigger_invoice_date_on' => 'La fecha de la factura es el ":trigger_value"',
|
||||
'rule_trigger_invoice_date_before_choice' => 'La fecha de la factura es anterior al..',
|
||||
'rule_trigger_invoice_date_before' => 'La fecha de la factura es anterior al ":trigger_value"',
|
||||
'rule_trigger_invoice_date_after_choice' => 'La fecha de la factura es posterior al..',
|
||||
'rule_trigger_invoice_date_after' => 'La fecha de la factura es posterior al ":trigger_value"',
|
||||
'rule_trigger_created_at_before_choice' => 'La transacción fue creada antes del..',
|
||||
'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"',
|
||||
'rule_trigger_created_at_after_choice' => 'Transaction was created after..',
|
||||
'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"',
|
||||
'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..',
|
||||
'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"',
|
||||
'rule_trigger_created_at_before' => 'La transacción se creó antes del ":trigger_value"',
|
||||
'rule_trigger_created_at_after_choice' => 'La transacción fue creada después del..',
|
||||
'rule_trigger_created_at_after' => 'La transacción se creó antes del ":trigger_value"',
|
||||
'rule_trigger_updated_at_before_choice' => 'La transacción fue actualizada por última vez antes del..',
|
||||
'rule_trigger_updated_at_before' => 'La transacción se actualizó por última vez antes del ":trigger_value"',
|
||||
'rule_trigger_updated_at_after_choice' => 'La transacción se actualizó por última vez después del..',
|
||||
'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"',
|
||||
'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..',
|
||||
'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"',
|
||||
'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..',
|
||||
'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"',
|
||||
'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..',
|
||||
'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"',
|
||||
'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..',
|
||||
'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"',
|
||||
'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..',
|
||||
'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"',
|
||||
'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..',
|
||||
'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"',
|
||||
'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..',
|
||||
'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..',
|
||||
'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..',
|
||||
'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..',
|
||||
'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..',
|
||||
'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"',
|
||||
'rule_trigger_updated_at_after' => 'La transacción se actualizó por última vez antes del ":trigger_value"',
|
||||
'rule_trigger_foreign_amount_is_choice' => 'El importe extranjero es exactamente..',
|
||||
'rule_trigger_foreign_amount_is' => 'El importe extranjero es exactamente ":trigger_value"',
|
||||
'rule_trigger_foreign_amount_less_choice' => 'El importe extranjero es menor que..',
|
||||
'rule_trigger_foreign_amount_less' => 'El importe extranjero es menor que ":trigger_value"',
|
||||
'rule_trigger_foreign_amount_more_choice' => 'El importe extranjero es mayor que..',
|
||||
'rule_trigger_foreign_amount_more' => 'El importe extranjero es menor que ":trigger_value"',
|
||||
'rule_trigger_attachment_name_is_choice' => 'El nombre de cualquier archivo adjunto es..',
|
||||
'rule_trigger_attachment_name_is' => 'El nombre de cualquier archivo adjunto es ":trigger_value"',
|
||||
'rule_trigger_attachment_name_contains_choice' => 'El nombre de cualquier archivo adjunto contiene..',
|
||||
'rule_trigger_attachment_name_contains' => 'El nombre de cualquier archivo adjunto contiene ":trigger_value"',
|
||||
'rule_trigger_attachment_name_starts_choice' => 'El nombre de cualquier archivo adjunto comienza con..',
|
||||
'rule_trigger_attachment_name_starts' => 'El nombre de cualquier archivo adjunto comienza con ":trigger_value"',
|
||||
'rule_trigger_attachment_name_ends_choice' => 'El nombre de cualquier archivo adjunto termina con..',
|
||||
'rule_trigger_attachment_name_ends' => 'El nombre de cualquier archivo adjunto termina con ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_are_choice' => 'Cualquier nota de archivos adjuntos es..',
|
||||
'rule_trigger_attachment_notes_are' => 'Cualquier nota de archivos adjuntos es ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_contains_choice' => 'Cualquier nota de archivos adjuntos contiene..',
|
||||
'rule_trigger_attachment_notes_contains' => 'Cualquier nota de archivos adjuntos contiene ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_starts_choice' => 'Cualquier nota de archivos adjuntos comienza por..',
|
||||
'rule_trigger_attachment_notes_starts' => 'Cualquier nota de archivos adjuntos comienza por ":trigger_value"',
|
||||
'rule_trigger_attachment_notes_ends_choice' => 'Cualquier nota de archivos adjuntos termina con..',
|
||||
'rule_trigger_attachment_notes_ends' => 'Cualquier nota de archivos adjuntos termina con ":trigger_value"',
|
||||
'rule_trigger_reconciled_choice' => 'Transacción conciliada',
|
||||
'rule_trigger_reconciled' => 'Transacción conciliada',
|
||||
'rule_trigger_exists_choice' => 'Any transaction matches(!)',
|
||||
'rule_trigger_exists_choice' => 'Cualquier transacción coincide(!)',
|
||||
'rule_trigger_exists' => 'Cualquier transacción coincide',
|
||||
|
||||
// more values for new types:
|
||||
'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"',
|
||||
'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"',
|
||||
'rule_trigger_not_transaction_type' => 'Transaction type is not ":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_account_id' => 'El ID de la cuenta no es ":trigger_value"',
|
||||
'rule_trigger_not_source_account_id' => 'El ID de cuenta de origen no es ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_id' => 'El ID de cuenta de destino no es ":trigger_value"',
|
||||
'rule_trigger_not_transaction_type' => 'El tipo de transacción no es ":trigger_value"',
|
||||
'rule_trigger_not_tag_is' => 'La etiqueta no es ":trigger_value"',
|
||||
'rule_trigger_not_tag_is_not' => 'La etiqueta es ":trigger_value"',
|
||||
'rule_trigger_not_description_is' => 'La descripción no es ":trigger_value"',
|
||||
'rule_trigger_not_description_contains' => 'La descripción no contiene',
|
||||
'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_notes_is' => 'Notes are not ":trigger_value"',
|
||||
'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"',
|
||||
'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"',
|
||||
'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"',
|
||||
'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"',
|
||||
'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"',
|
||||
'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"',
|
||||
'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"',
|
||||
'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"',
|
||||
'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"',
|
||||
'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"',
|
||||
'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"',
|
||||
'rule_trigger_not_description_ends' => 'La descripción no termina con ":trigger_value"',
|
||||
'rule_trigger_not_description_starts' => 'La descripción no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_notes_is' => 'Las notas no son ":trigger_value"',
|
||||
'rule_trigger_not_notes_contains' => 'Las notas no contienen ":trigger_value"',
|
||||
'rule_trigger_not_notes_ends' => 'Las notas no terminan en ":trigger_value"',
|
||||
'rule_trigger_not_notes_starts' => 'Las notas no comienzan con ":trigger_value"',
|
||||
'rule_trigger_not_source_account_is' => 'La cuenta de origen no es ":trigger_value"',
|
||||
'rule_trigger_not_source_account_contains' => 'La cuenta de origen no contiene ":trigger_value"',
|
||||
'rule_trigger_not_source_account_ends' => 'La cuenta de origen no termina en ":trigger_value"',
|
||||
'rule_trigger_not_source_account_starts' => 'La cuenta de origen no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_is' => 'El número / IBAN de la cuenta de origen no es ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_contains' => 'El número / IBAN de la cuenta de origen no contiene ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_ends' => 'El número / IBAN de la cuenta de origen no termina en ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_starts' => 'El número / IBAN de la cuenta de origen no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_is' => 'La cuenta de destino no es ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_contains' => 'La cuenta de destino no contiene ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_ends' => 'La cuenta de destino no termina en ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_starts' => 'La cuenta de destino no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_is' => 'El número / IBAN de la cuenta de destino no es ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_contains' => 'El número / IBAN de la cuenta de destino no contiene ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_ends' => 'El número / IBAN de la cuenta de destino no termina en ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_starts' => 'El número / IBAN de la cuenta de destino no comienza por ":trigger_value"',
|
||||
'rule_trigger_not_account_is' => 'Ninguna cuenta es ":trigger_value"',
|
||||
'rule_trigger_not_account_contains' => 'Ninguna cuenta contiene ":trigger_value"',
|
||||
'rule_trigger_not_account_ends' => 'Ninguna cuenta termina en ":trigger_value"',
|
||||
'rule_trigger_not_account_starts' => 'Ninguna cuenta comienza con ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_is' => 'Ninguno de los números de cuenta / IBAN es ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_contains' => 'Ninguno de los números de cuenta / IBAN contiene ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_ends' => 'Ninguno de los números de cuenta / IBAN termina en ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_starts' => 'Ninguno de los números de cuenta / IBAN comienza con ":trigger_value"',
|
||||
'rule_trigger_not_category_is' => 'La categoría no es ":trigger_value"',
|
||||
'rule_trigger_not_category_contains' => 'La categoría no contiene ":trigger_value"',
|
||||
'rule_trigger_not_category_ends' => 'La categoría no termina en ":trigger_value"',
|
||||
@ -1123,68 +1123,68 @@ return [
|
||||
'rule_trigger_not_budget_contains' => 'El presupuesto no contiene ":trigger_value " "',
|
||||
'rule_trigger_not_budget_ends' => 'El presupuesto no termina en ":trigger_value"',
|
||||
'rule_trigger_not_budget_starts' => 'El presupuesto no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"',
|
||||
'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"',
|
||||
'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"',
|
||||
'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"',
|
||||
'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"',
|
||||
'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"',
|
||||
'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"',
|
||||
'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"',
|
||||
'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"',
|
||||
'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"',
|
||||
'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"',
|
||||
'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"',
|
||||
'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"',
|
||||
'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"',
|
||||
'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"',
|
||||
'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"',
|
||||
'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"',
|
||||
'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_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"',
|
||||
'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"',
|
||||
'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"',
|
||||
'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"',
|
||||
'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"',
|
||||
'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"',
|
||||
'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"',
|
||||
'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"',
|
||||
'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"',
|
||||
'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"',
|
||||
'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"',
|
||||
'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"',
|
||||
'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"',
|
||||
'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"',
|
||||
'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"',
|
||||
'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"',
|
||||
'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"',
|
||||
'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"',
|
||||
'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"',
|
||||
'rule_trigger_not_bill_is' => 'La factura no es ":trigger_value"',
|
||||
'rule_trigger_not_bill_contains' => 'La factura no contiene ":trigger_value " "',
|
||||
'rule_trigger_not_bill_ends' => 'La factura no termina en ":trigger_value"',
|
||||
'rule_trigger_not_bill_starts' => 'La factura no termina con ":trigger_value"',
|
||||
'rule_trigger_not_external_id_is' => 'El ID externo no es ":trigger_value"',
|
||||
'rule_trigger_not_external_id_contains' => 'El ID externo no contiene ":trigger_value"',
|
||||
'rule_trigger_not_external_id_ends' => 'El ID externo no termina en ":trigger_value"',
|
||||
'rule_trigger_not_external_id_starts' => 'El ID externo no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_is' => 'La referencia interna no es ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_contains' => 'La referencia interna no contiene ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_ends' => 'La referencia interna no termina en ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_starts' => 'La referencia interna no comienza con ":trigger_value"',
|
||||
'rule_trigger_not_external_url_is' => 'La URL externa no es ":trigger_value"',
|
||||
'rule_trigger_not_external_url_contains' => 'La URL externa no contiene ":trigger_value"',
|
||||
'rule_trigger_not_external_url_ends' => 'La URL externa no termina en ":trigger_value"',
|
||||
'rule_trigger_not_external_url_starts' => 'La URL externa no comienza por ":trigger_value"',
|
||||
'rule_trigger_not_currency_is' => 'La moneda no es ":trigger_value"',
|
||||
'rule_trigger_not_foreign_currency_is' => 'La moneda extranjera no es ":trigger_value"',
|
||||
'rule_trigger_not_id' => 'El ID de la transacción no es ":trigger_value"',
|
||||
'rule_trigger_not_journal_id' => 'El ID del diario de transacciones no es ":trigger_value"',
|
||||
'rule_trigger_not_recurrence_id' => 'El ID recurrente no es ":trigger_value"',
|
||||
'rule_trigger_not_date_on' => 'La fecha no está en ":trigger_value"',
|
||||
'rule_trigger_not_date_before' => 'La fecha no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_date_after' => 'La fecha no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_interest_date_on' => 'La fecha de interés no es el ":trigger_value"',
|
||||
'rule_trigger_not_interest_date_before' => 'La fecha de interés no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_interest_date_after' => 'La fecha de interés no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_book_date_on' => 'La fecha de registro no es el ":trigger_value"',
|
||||
'rule_trigger_not_book_date_before' => 'La fecha de registro no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_book_date_after' => 'La fecha de registro no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_process_date_on' => 'La fecha de procesamiento no es el ":trigger_value"',
|
||||
'rule_trigger_not_process_date_before' => 'La fecha de procesamiento no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_process_date_after' => 'La fecha de procesamiento no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_due_date_on' => 'La fecha de vencimiento no es el ":trigger_value"',
|
||||
'rule_trigger_not_due_date_before' => 'La fecha de vencimiento no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_due_date_after' => 'La fecha vencimiento no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_payment_date_on' => 'La fecha de pago no es el ":trigger_value"',
|
||||
'rule_trigger_not_payment_date_before' => 'La fecha de pago no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_payment_date_after' => 'La fecha de pago no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_on' => 'La fecha de la factura no es el ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_before' => 'La fecha de la factura no es anterior al ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_after' => 'La fecha de la factura no es posterior al ":trigger_value"',
|
||||
'rule_trigger_not_created_at_on' => 'La transacción no se creó el ":trigger_value"',
|
||||
'rule_trigger_not_created_at_before' => 'La transacción no se creó antes del ":trigger_value"',
|
||||
'rule_trigger_not_created_at_after' => 'La transacción no se crea después de ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_on' => 'La transacción no se actualiza en ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_before' => 'La transacción no se actualiza antes de ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_after' => 'La transacción no se actualiza después de ":trigger_value"',
|
||||
'rule_trigger_not_amount_is' => 'El importe de la transacción no es ":trigger_value"',
|
||||
'rule_trigger_not_amount_less' => 'El importe de la transacción es superior a ":trigger_value"',
|
||||
'rule_trigger_not_amount_more' => 'El importe de la transacción es menor que ":trigger_value"',
|
||||
'rule_trigger_not_foreign_amount_is' => 'El importe de la transacción extranjera no es ":trigger_value"',
|
||||
'rule_trigger_not_foreign_amount_less' => 'El importe de la transacción extranjera es superior a ":trigger_value"',
|
||||
'rule_trigger_not_foreign_amount_more' => 'El importe de la transacción extranjera es menor de ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_is' => 'Ningún archivo adjunto se llama ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_contains' => 'Ningún nombre de adjunto contiene ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_starts' => 'Ningún nombre de adjuntos comienza con ":trigger_value"',
|
||||
'rule_trigger_not_attachment_name_ends' => 'Ningún nombre de adjuntos termina en ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_are' => 'No hay notas adjuntas que sean ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_contains' => 'No hay notas adjuntas que contengan ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_starts' => 'No hay notas adjuntas que comiencen con ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_ends' => 'No hay notas adjuntas que terminen en ":trigger_value"',
|
||||
'rule_trigger_not_reconciled' => 'La transacción no ha sido conciliada',
|
||||
'rule_trigger_not_exists' => 'La transacción no existe',
|
||||
'rule_trigger_not_has_attachments' => 'La transacción no tiene adjuntos',
|
||||
@ -1194,7 +1194,7 @@ return [
|
||||
'rule_trigger_not_has_any_tag' => 'La transacción no tiene etiquetas',
|
||||
'rule_trigger_not_any_notes' => 'La transacción no tiene notas',
|
||||
'rule_trigger_not_any_external_url' => 'La transacción no tiene URL externa',
|
||||
'rule_trigger_not_has_no_attachments' => 'Transaction has a (any) attachment(s)',
|
||||
'rule_trigger_not_has_no_attachments' => 'La transacción tiene (cualquier) adjunto(s)',
|
||||
'rule_trigger_not_has_no_category' => 'La transacción tiene una (cualquiera) categoría',
|
||||
'rule_trigger_not_has_no_budget' => 'La transacción tiene un (cualquiera) presupuesto',
|
||||
'rule_trigger_not_has_no_bill' => 'La transacción tiene factura(s)',
|
||||
@ -1238,21 +1238,21 @@ return [
|
||||
'rule_action_remove_tag_choice' => 'Quitar etiqueta ..',
|
||||
'rule_action_remove_all_tags_choice' => 'Eliminar todas las etiquetas',
|
||||
'rule_action_set_description_choice' => 'Añadir descripción ..',
|
||||
'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 ..',
|
||||
'rule_action_prepend_description_choice' => 'Prepend description with ..',
|
||||
'rule_action_set_source_account_choice' => 'Set source account to ..',
|
||||
'rule_action_update_piggy_choice' => 'Añadir / quitar el importe de la transacción de la hucha ..',
|
||||
'rule_action_update_piggy' => 'Añadir / quitar el importe de la transacción de la hucha ":action_value"',
|
||||
'rule_action_append_description_choice' => 'Añadir descripción con ..',
|
||||
'rule_action_prepend_description_choice' => 'Anteponer descripción con ..',
|
||||
'rule_action_set_source_account_choice' => 'Establecer cuenta de origen ..',
|
||||
'rule_action_set_source_account' => 'Establecer cuenta de origen en :action_value',
|
||||
'rule_action_set_destination_account_choice' => 'Set destination account to ..',
|
||||
'rule_action_set_destination_account_choice' => 'Establecer cuenta de destino ..',
|
||||
'rule_action_set_destination_account' => 'Establecer cuenta de destino en :action_value',
|
||||
'rule_action_append_notes_choice' => 'Append notes with ..',
|
||||
'rule_action_append_notes_choice' => 'Añadir notas con ..',
|
||||
'rule_action_append_notes' => 'Anexar notas con ":action_value"',
|
||||
'rule_action_prepend_notes_choice' => 'Prepend notes with ..',
|
||||
'rule_action_prepend_notes_choice' => 'Anteponer notas con ..',
|
||||
'rule_action_prepend_notes' => 'Prepara notas con ":action_value"',
|
||||
'rule_action_clear_notes_choice' => 'Eliminar cualquier nota',
|
||||
'rule_action_clear_notes' => 'Eliminar cualquier nota',
|
||||
'rule_action_set_notes_choice' => 'Set notes to ..',
|
||||
'rule_action_set_notes_choice' => 'Establecer nota ..',
|
||||
'rule_action_link_to_bill_choice' => 'Enlazar a una factura ..',
|
||||
'rule_action_link_to_bill' => 'Enlace a una factura ":action_value"',
|
||||
'rule_action_set_notes' => 'Establecer notas para:action_value',
|
||||
@ -1262,18 +1262,18 @@ return [
|
||||
'rule_action_convert_withdrawal' => 'Convierta la transacción en un gasto de ":action_value"',
|
||||
'rule_action_convert_transfer_choice' => 'Convierta la transacción a una transferencia',
|
||||
'rule_action_convert_transfer' => 'Convierta la transacción a una transferencia con ":action_value"',
|
||||
'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes',
|
||||
'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description',
|
||||
'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description',
|
||||
'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes',
|
||||
'rule_action_append_descr_to_notes' => 'Append description to notes',
|
||||
'rule_action_append_notes_to_descr' => 'Append notes to description',
|
||||
'rule_action_move_descr_to_notes' => 'Replace notes with description',
|
||||
'rule_action_move_notes_to_descr' => 'Replace description with notes',
|
||||
'rule_action_append_descr_to_notes_choice' => 'Añadir la descripción a las notas de la transacción',
|
||||
'rule_action_append_notes_to_descr_choice' => 'Añadir las notas de la transacción a la descripción',
|
||||
'rule_action_move_descr_to_notes_choice' => 'Reemplazar las notas de transacción actuales por la descripción',
|
||||
'rule_action_move_notes_to_descr_choice' => 'Reemplazar la descripción actual por las notas de la transacción',
|
||||
'rule_action_append_descr_to_notes' => 'Añadir descripción a las notas',
|
||||
'rule_action_append_notes_to_descr' => 'Añadir las notas a la descripción',
|
||||
'rule_action_move_descr_to_notes' => 'Reemplazar las notas con la descripción',
|
||||
'rule_action_move_notes_to_descr' => 'Reemplazar la descripción con notas',
|
||||
'rulegroup_for_bills_title' => 'Regla de grupo para facturas',
|
||||
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
|
||||
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',
|
||||
'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".',
|
||||
'rulegroup_for_bills_description' => 'Un grupo de reglas especiales para todas las reglas que involucren facturas.',
|
||||
'rule_for_bill_title' => 'Regla autogenerada para la factura ":name"',
|
||||
'rule_for_bill_description' => 'Esta regla se genera automáticamente para intentar coincidir con la factura ":name".',
|
||||
'create_rule_for_bill' => 'Crear una nueva regla para la factura ":name"',
|
||||
'create_rule_for_bill_txt' => 'Acaba de crear una nueva factura llamada ":name", ¡enhorabuena! Firefly III puede asociar de manera automágica nuevos gastos con esta factura. Por ejemplo, siempre que pague su alquiler, la factura "alquiler" será enlazada a ese gasto. De esta manera, Firefly III puede mostrarle de forma precisa qué facturas han vencido y cuáles no. Para ello, debe crear una nueva regla. Si estos valores son correctos, Firefly III enlazará automáticamente el gasto correspondiente con la factura correcta. Por favor, revise los disparadores para ver si son correctos, y añada algunos si son incorrectos.',
|
||||
'new_rule_for_bill_title' => 'Regla para la factura ":name"',
|
||||
@ -1391,23 +1391,23 @@ return [
|
||||
'pref_notifications' => 'Notificaciones',
|
||||
'pref_notifications_help' => 'Indique si desea recibir estas notificaciones. Algunas notificaciones pueden contener información financiera sensible.',
|
||||
'slack_webhook_url' => 'URL del Webhook de Slack',
|
||||
'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.',
|
||||
'slack_url_label' => 'Slack "incoming webhook" URL',
|
||||
'slack_webhook_url_help' => 'Si desea recibir notificaciones de Firefly III a través de Slack, introduzca la URL del webhook aquí. De lo contrario, deje el campo en blanco. Si usted es un administrador, también necesitará establecer esta URL en la administración.',
|
||||
'slack_url_label' => 'URL del webhook entrante de Slack',
|
||||
|
||||
// Financial administrations
|
||||
'administration_index' => 'Administración financiera',
|
||||
|
||||
// profile:
|
||||
'purge_data_title' => 'Purge data from Firefly III',
|
||||
'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.',
|
||||
'delete_stuff_header' => 'Delete and purge data',
|
||||
'purge_all_data' => 'Purge all deleted records',
|
||||
'purge_data' => 'Purge data',
|
||||
'purge_data_title' => 'Purgar datos de Firefly III',
|
||||
'purge_data_expl' => '"Purgar" significa "eliminar lo que ya está eliminado". En circunstancias normales, Firefly III no elimina nada permanentemente. Sólo lo oculta. El botón de abajo borra todos estos registros previamente "eliminados" PARA SIEMPRE.',
|
||||
'delete_stuff_header' => 'Borrar y purgar datos',
|
||||
'purge_all_data' => 'Purgar todos los registros borrados',
|
||||
'purge_data' => 'Purgar datos',
|
||||
'purged_all_records' => 'Se han limpiado todos los registros borrados.',
|
||||
'delete_data_title' => 'Eliminar datos de Firefly III',
|
||||
'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.',
|
||||
'permanent_delete_stuff' => 'Puedes eliminar cosas de Firefly III. Usar los botones de abajo significa que tus objetos serán ocultados. No hay ningún botón de deshacer para esto, pero los elementos pueden permanecer en la base de datos y ser recuperados si es necesario.',
|
||||
'other_sessions_logged_out' => 'Todas las demás sesiones han sido desconectadas.',
|
||||
'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.',
|
||||
'delete_unused_accounts' => 'Eliminar cuentas sin usar limpiará sus listas de autocompletado.',
|
||||
'delete_all_unused_accounts' => 'Eliminar cuentas no utilizadas',
|
||||
'deleted_all_unused_accounts' => 'Todas las cuentas no utilizadas han sido eliminadas',
|
||||
'delete_all_budgets' => 'Eliminar todos sus presupuestos',
|
||||
@ -2183,8 +2183,8 @@ return [
|
||||
'inactive' => 'Inactivo',
|
||||
'active' => 'Activo',
|
||||
'difference' => 'Diferente',
|
||||
'money_flowing_in' => 'Dentro',
|
||||
'money_flowing_out' => 'Fuera',
|
||||
'money_flowing_in' => 'Entrada',
|
||||
'money_flowing_out' => 'Salida',
|
||||
'topX' => 'tope :number',
|
||||
'show_full_list' => 'Mostrar lista entera',
|
||||
'show_only_top' => 'Mostrar solo tope :number',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'No puedes usar esta cuenta como cuenta de origen.',
|
||||
'generic_invalid_destination' => 'No puede usar esta cuenta como cuenta de destino.',
|
||||
|
||||
'generic_no_source' => 'Debes enviar la información de la cuenta de origen.',
|
||||
'generic_no_destination' => 'Debes enviar la información de la cuenta de destino.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute debe ser mayor o igual que :value.',
|
||||
'gt.numeric' => 'El :attribute debe ser mayor que :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Et voi käyttää tätä tiliä lähdetilinä.',
|
||||
'generic_invalid_destination' => 'Et voi käyttää tätä tiliä kohdetilinä.',
|
||||
|
||||
'generic_no_source' => 'Sinun on annettava lähdetilin tiedot.',
|
||||
'generic_no_destination' => 'Sinun on annettava kohdetilin tiedot.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Määritteen :attribute arvon täytyy olla vähintään :value.',
|
||||
'gt.numeric' => ':attribute tulee olla suurempi kuin :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Vous ne pouvez pas utiliser ce compte comme compte source.',
|
||||
'generic_invalid_destination' => 'Vous ne pouvez pas utiliser ce compte comme compte de destination.',
|
||||
|
||||
'generic_no_source' => 'Vous devez saisir les informations du compte source.',
|
||||
'generic_no_destination' => 'Vous devez saisir les informations du compte de destination.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.',
|
||||
'gt.numeric' => 'Le champ :attribute doit être plus grand que :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Nem használhatod ezt a fiókot forrásfiókként.',
|
||||
'generic_invalid_destination' => 'Nem használhatod ezt a fiókot célfiókként.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute attribútumnak :value értéknél nagyobbnak vagy vele egyenlőnek kell lennie.',
|
||||
'gt.numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Anda tidak dapat menggunakan akun ini sebagai akun sumber.',
|
||||
'generic_invalid_destination' => 'Anda tidak dapat menggunakan akun ini sebagai akun tujuan.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute harus lebih besar dari atau sama dengan :value.',
|
||||
'gt.numeric' => ':attribute harus lebih besar dari :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Non puoi utilizzare questo conto come conto di origine.',
|
||||
'generic_invalid_destination' => 'Non puoi utilizzare questo conto come conto di destinazione.',
|
||||
|
||||
'generic_no_source' => 'È necessario inviare le informazioni sul conto di origine.',
|
||||
'generic_no_destination' => 'È necessario inviare le informazioni sul conto di destinazione.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Il campo :attribute deve essere maggiore o uguale a :value.',
|
||||
'gt.numeric' => 'Il campo :attribute deve essere maggiore di :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'この口座を引き出し元口座として使用することはできません。',
|
||||
'generic_invalid_destination' => 'この口座を預け入れ先口座として使用することはできません。',
|
||||
|
||||
'generic_no_source' => '出金元口座情報の登録が必要です。',
|
||||
'generic_no_destination' => '送金先口座情報の登録が必要です。',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute は :value 以上でなければなりません。',
|
||||
'gt.numeric' => ':attribute は :value より大きな値でなければいけません。',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => '이 계정을 소스 계정으로 사용할 수 없습니다.',
|
||||
'generic_invalid_destination' => '이 계정을 대상 계정으로 사용할 수 없습니다.',
|
||||
|
||||
'generic_no_source' => '소스 계정 정보를 제출해야 합니다.',
|
||||
'generic_no_destination' => '대상 계정 정보를 제출해야 합니다.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute의 값은 :value 이상이어야 합니다.',
|
||||
'gt.numeric' => ':attribute의 값은 :value보다 커야 합니다.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Du kan ikke bruke denne kontoen som kildekonto.',
|
||||
'generic_invalid_destination' => 'Du kan ikke bruke denne kontoen som destinasjonskonto.',
|
||||
|
||||
'generic_no_source' => 'Du må legge inn kilde kontoinformasjon.',
|
||||
'generic_no_destination' => 'Du må legge til destinasjon kontoinformasjon.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute må være større enn eller lik :value.',
|
||||
'gt.numeric' => ':attribute må være større enn :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Je kan deze rekening niet gebruiken als bronrekening.',
|
||||
'generic_invalid_destination' => 'Je kan deze rekening niet gebruiken als doelrekening.',
|
||||
|
||||
'generic_no_source' => 'Je moet ook bronrekeninginformatie meegeven.',
|
||||
'generic_no_destination' => 'Je moet ook doelrekeninginformatie meegeven.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute moet groter of gelijk zijn aan :value.',
|
||||
'gt.numeric' => ':attribute moet groter zijn dan :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Nie możesz użyć tego konta jako konta źródłowego.',
|
||||
'generic_invalid_destination' => 'Nie możesz użyć tego konta jako konta docelowego.',
|
||||
|
||||
'generic_no_source' => 'Musisz przesłać dane konta źródłowego.',
|
||||
'generic_no_destination' => 'Musisz przesłać dane konta docelowego.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute musi być większy lub równy :value.',
|
||||
'gt.numeric' => ':attribute musi być większy niż :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Você não pode usar esta conta como conta de origem.',
|
||||
'generic_invalid_destination' => 'Você não pode usar esta conta como conta de destino.',
|
||||
|
||||
'generic_no_source' => 'Você precisa enviar as informações da conta de origem.',
|
||||
'generic_no_destination' => 'Você precisa enviar as informações da conta de destino.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute deve ser maior ou igual a :value.',
|
||||
'gt.numeric' => 'O campo :attribute deve ser maior que :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Não pode utilizar esta conta como conta de origem.',
|
||||
'generic_invalid_destination' => 'Não pode utilizar esta conta como conta de destino.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'O :attribute deve ser maior ou igual a :value.',
|
||||
'gt.numeric' => 'O :attribute deve ser maior que :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Nu puteți utiliza acest cont ca și cont sursă.',
|
||||
'generic_invalid_destination' => 'Nu puteți utiliza acest cont ca și cont de destinație.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute trebuie să fie mai mare sau egal cu :value.',
|
||||
'gt.numeric' => ':attribute trebuie să fie mai mare decât :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Вы не можете использовать этот счёт в качестве счёта-источника.',
|
||||
'generic_invalid_destination' => 'Вы не можете использовать этот счёт в качестве счёта назначения.',
|
||||
|
||||
'generic_no_source' => 'Вы должны предоставить информацию об учетной записи источника.',
|
||||
'generic_no_destination' => 'Вы должны предоставить данные учетной записи назначения.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Значение :attribute должно быть больше или равно :value.',
|
||||
'gt.numeric' => 'Значение :attribute должно быть больше :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Tento účet nie je možné použiť ako zdrojový účet.',
|
||||
'generic_invalid_destination' => 'Tento účet nie je možné použiť ako cieľový účet.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Hodnota :attribute musí byť väčšia alebo rovná :value.',
|
||||
'gt.numeric' => 'Hodnota :attribute musí byť väčšia ako :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Det går inte att använda detta konto som källkonto.',
|
||||
'generic_invalid_destination' => 'Det går inte att använda detta konto som mottagarkonto.',
|
||||
|
||||
'generic_no_source' => 'Du måste ange källkontoinformation.',
|
||||
'generic_no_destination' => 'Du måste ange destinationskontos information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute måste vara större än eller lika med :value.',
|
||||
'gt.numeric' => ':attribute måste vara större än :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||
|
@ -316,7 +316,7 @@ return [
|
||||
'update_new_version_alert' => 'Доступна нова версія Firefly III. Ви працюєте з :your_version, остання версія :new_version яка була випущена на :date.',
|
||||
'update_version_beta' => 'Це бета-версія. Ви можете зіткнутися з проблемами.',
|
||||
'update_version_alpha' => 'Це альфа-версія. Може містити баги та недоліки.',
|
||||
'update_current_version_alert' => 'Ви працюєте в найоновішій версії :version',
|
||||
'update_current_version_alert' => 'Ви працюєте в найновішій версії :version.',
|
||||
'update_newer_version_alert' => 'Ви працюєте з :your_version версією, яка є новішою за останній реліз, :new_version.',
|
||||
'update_check_error' => 'Сталася помилка під час перевірки наявності оновлень: :error',
|
||||
'unknown_error' => 'Невідома помилка. Вибачте.',
|
||||
|
@ -41,7 +41,7 @@ return [
|
||||
'index_box_out_holder' => 'Це невеличке віконце та сусідні, дасть вам швидкий огляд вашої фінансової ситуації.',
|
||||
'index_help' => 'Якщо вам коли-небудь знадобиться допомога зі сторінкою або формою, натисніть цю кнопку.',
|
||||
'index_outro' => 'Більшість сторінок Firefly III починаються з невеличкого огляду як цей. Будь ласка, зв\'яжіться зі мною, коли у вас виникнуть питання або коментарі. Насолоджуйтесь!',
|
||||
'index_sidebar-toggle' => 'Для того щоб створити транзакції, рахугки чи інші речі використовуйте меню під цією іконкою.',
|
||||
'index_sidebar-toggle' => 'Для того щоб створити транзакції, рахунки чи інші речі використовуйте меню під цією іконкою.',
|
||||
'index_cash_account' => 'Наразі доступні лише ці рахунки. Ви можете використовувати готівковий рахунок для відстеження грошових витрат, але це не обов\'язково.',
|
||||
|
||||
// transactions
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Ви не можете використовувати цей рахунок як вихідний.',
|
||||
'generic_invalid_destination' => 'Ви не можете використовувати цей рахунок як призначення.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'Поле :attribute має дорівнювати чи бути більше ніж :value.',
|
||||
'gt.numeric' => 'Значення :attribute має бути більше за :value.',
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'Bạn không thể sử dụng tài khoản này làm tài khoản nguồn.',
|
||||
'generic_invalid_destination' => 'Bạn không thể sử dụng tài khoản này làm tài khoản đích.',
|
||||
|
||||
'generic_no_source' => 'Bạn phải gửi thông tin tài khoản nguồn.',
|
||||
'generic_no_destination' => 'Bạn phải gửi thông tin tài khoản đích.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute phải lớn hơn hoặc bằng :value.',
|
||||
'gt.numeric' => ':attribute phải lớn hơn :value.',
|
||||
|
@ -254,9 +254,9 @@ return [
|
||||
'inspect' => '检查',
|
||||
'create_new_webhook' => '创建新 Webhook',
|
||||
'webhooks_create_breadcrumb' => '创建新 Webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_trigger_form_help' => '推送事件发生时的触发条件',
|
||||
'webhook_response_form_help' => '推送必须提交给URL的内容',
|
||||
'webhook_delivery_form_help' => '推送采用哪种格式发送数据',
|
||||
'webhook_active_form_help' => 'Webhook 必须是激活状态,否则不会被调用。',
|
||||
'stored_new_webhook' => '新的 webhook “:title” 已保存',
|
||||
'delete_webhook' => '删除 Webhook',
|
||||
@ -265,12 +265,12 @@ return [
|
||||
'updated_webhook' => '已更新 webhook “:title”',
|
||||
'edit_webhook_js' => '编辑 webhook “{title}”',
|
||||
'show_webhook' => 'Webhook “:title”',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. Please wait for results to appear.',
|
||||
'webhook_was_triggered' => '在指定的交易中触发了推送,请等待显示结果',
|
||||
'webhook_messages' => 'Webhook 消息',
|
||||
'view_message' => '查看消息',
|
||||
'view_attempts' => '查看失败的尝试',
|
||||
'message_content_title' => 'Webhook 消息内容',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'message_content_help' => '这是使用推送发送(或尝试)的消息内容',
|
||||
'attempt_content_title' => 'Webhook 尝试',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
@ -279,8 +279,8 @@ return [
|
||||
'response' => '响应',
|
||||
'visit_webhook_url' => '访问 webhook URL',
|
||||
'reset_webhook_secret' => '重置 webhook 密钥',
|
||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> has been stored.',
|
||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") has been updated.',
|
||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">推送 #{ID} ("{title}")</a> 已保存.',
|
||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">推送 #{ID}</a> ("{title}") 已更新.',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III :version 版授权请求',
|
||||
@ -361,13 +361,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_no_external_id' => '交易没有外部ID',
|
||||
'search_modifier_not_any_external_url' => '交易没有外部链接',
|
||||
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
|
||||
'search_modifier_not_any_external_id' => '交易没有外部ID',
|
||||
'search_modifier_any_external_url' => '交易必须有一个(或任意多个)外部链接',
|
||||
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
|
||||
'search_modifier_any_external_id' => '交易必须有一个(或任意多个)外部ID',
|
||||
'search_modifier_not_no_external_url' => '交易必须有一个(或任意多个)外部链接',
|
||||
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
|
||||
'search_modifier_not_no_external_id' => '交易必须有一个(或任意多个)外部ID',
|
||||
'search_modifier_internal_reference_is' => '内部引用为“:value”',
|
||||
'search_modifier_not_internal_reference_is' => '内部引用不为“:value”',
|
||||
'search_modifier_description_starts' => '描述开头为“:value”',
|
||||
@ -377,11 +377,11 @@ return [
|
||||
'search_modifier_description_contains' => '描述包含“:value”',
|
||||
'search_modifier_not_description_contains' => '描述不包含“:value”',
|
||||
'search_modifier_description_is' => '描述为“:value”',
|
||||
'search_modifier_not_description_is' => 'Description is exactly not ":value"',
|
||||
'search_modifier_not_description_is' => '描述不为 ":value"',
|
||||
'search_modifier_currency_is' => '交易 (外币) 货币为“:value”',
|
||||
'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"',
|
||||
'search_modifier_not_currency_is' => '交易 (外币) 货币不为“:value”',
|
||||
'search_modifier_foreign_currency_is' => '交易外币为“:value”',
|
||||
'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"',
|
||||
'search_modifier_not_foreign_currency_is' => '交易外币不为“:value”',
|
||||
'search_modifier_has_attachments' => '交易必须有附件',
|
||||
'search_modifier_has_no_category' => '交易不能有分类',
|
||||
'search_modifier_not_has_no_category' => '交易必须有一个(或任意多个)分类',
|
||||
@ -402,39 +402,39 @@ return [
|
||||
'search_modifier_notes_contains' => '交易备注包含“:value”',
|
||||
'search_modifier_not_notes_contains' => '交易备注不包含“:value”',
|
||||
'search_modifier_notes_starts' => '交易备注开头为“:value”',
|
||||
'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"',
|
||||
'search_modifier_notes_ends' => 'The transaction notes end with ":value"',
|
||||
'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"',
|
||||
'search_modifier_notes_is' => 'The transaction notes are exactly ":value"',
|
||||
'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"',
|
||||
'search_modifier_not_notes_starts' => '交易备注开头不含":value"',
|
||||
'search_modifier_notes_ends' => '交易备注结尾包含":value"',
|
||||
'search_modifier_not_notes_ends' => '交易备注结尾不含":value"',
|
||||
'search_modifier_notes_is' => '交易备注是":value"',
|
||||
'search_modifier_not_notes_is' => '交易备注不是":value"',
|
||||
'search_modifier_no_notes' => '交易备注为空',
|
||||
'search_modifier_not_no_notes' => '交易必须填写备注',
|
||||
'search_modifier_any_notes' => '交易备注不为空',
|
||||
'search_modifier_not_any_notes' => '交易没有备注',
|
||||
'search_modifier_amount_is' => 'Amount is exactly :value',
|
||||
'search_modifier_amount_is' => '金额为 :value',
|
||||
'search_modifier_not_amount_is' => '金额不是 :value',
|
||||
'search_modifier_amount_less' => '金额小于或等于:value',
|
||||
'search_modifier_not_amount_more' => 'Amount is less than or equal to :value',
|
||||
'search_modifier_not_amount_more' => '金额小于或等于:value',
|
||||
'search_modifier_amount_more' => '金额大于或等于:value',
|
||||
'search_modifier_not_amount_less' => 'Amount is more than or equal to :value',
|
||||
'search_modifier_not_amount_less' => '金额大于或等于:value',
|
||||
'search_modifier_source_account_is' => '来源账户名称为“:value”',
|
||||
'search_modifier_not_source_account_is' => 'Source account name is not ":value"',
|
||||
'search_modifier_not_source_account_is' => '来源账户名称不为“:value”',
|
||||
'search_modifier_source_account_contains' => '来源账户名称包含“:value”',
|
||||
'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"',
|
||||
'search_modifier_not_source_account_contains' => '来源账户名称不包含“:value”',
|
||||
'search_modifier_source_account_starts' => '来源账户名称开头为“:value”',
|
||||
'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"',
|
||||
'search_modifier_not_source_account_starts' => '来源帐户名称不以 ":value 开头的',
|
||||
'search_modifier_source_account_ends' => '来源账户名称结尾为“:value”',
|
||||
'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"',
|
||||
'search_modifier_not_source_account_ends' => '来源帐户名称不以":value" 结尾的',
|
||||
'search_modifier_source_account_id' => '来源账户 ID 为 :value',
|
||||
'search_modifier_not_source_account_id' => 'Source account ID is not :value',
|
||||
'search_modifier_not_source_account_id' => '来源账户 ID 不为 :value',
|
||||
'search_modifier_source_account_nr_is' => '来源账户编号 (IBAN) 为“:value”',
|
||||
'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"',
|
||||
'search_modifier_not_source_account_nr_is' => '来源账户编号 (IBAN) 不为“:value”',
|
||||
'search_modifier_source_account_nr_contains' => '来源账户编号 (IBAN) 包含“:value”',
|
||||
'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"',
|
||||
'search_modifier_not_source_account_nr_contains' => '来源账户编号 (IBAN) 不包含“:value”',
|
||||
'search_modifier_source_account_nr_starts' => '来源账户编号 (IBAN) 开头为“:value”',
|
||||
'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"',
|
||||
'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"',
|
||||
'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"',
|
||||
'search_modifier_not_source_account_nr_starts' => '来源账户编号 (IBAN) 不以“:value”开头的',
|
||||
'search_modifier_source_account_nr_ends' => '来源账户编号 (IBAN) 以“:value”结尾的',
|
||||
'search_modifier_not_source_account_nr_ends' => '来源账户编号 (IBAN) 不以“:value”结尾的',
|
||||
'search_modifier_destination_account_is' => '目标账户名称为“:value”',
|
||||
'search_modifier_not_destination_account_is' => '目标帐户名称不是 ":value"',
|
||||
'search_modifier_destination_account_contains' => '目标账户名称包含“:value”',
|
||||
@ -454,25 +454,25 @@ return [
|
||||
'search_modifier_destination_account_nr_contains' => '目标账户编号 (IBAN) 包含“:value”',
|
||||
'search_modifier_not_destination_account_nr_contains' => '目标帐户号 (IBAN) 不包含明确的 ":value"',
|
||||
'search_modifier_destination_account_nr_starts' => '目标账户编号 (IBAN) 开头为“:value”',
|
||||
'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"',
|
||||
'search_modifier_not_destination_account_nr_starts' => '目标账户编号 (IBAN) 不以“:value”开头的',
|
||||
'search_modifier_destination_account_nr_ends' => '目标账户编号 (IBAN) 结尾为“:value”',
|
||||
'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"',
|
||||
'search_modifier_not_destination_account_nr_ends' => '目标账户编号 (IBAN) 不以“:value”结尾的',
|
||||
'search_modifier_account_id' => '来源或/和目标账户 ID 为::value',
|
||||
'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value',
|
||||
'search_modifier_category_is' => '分类是“:value”',
|
||||
'search_modifier_not_category_is' => 'Category is not ":value"',
|
||||
'search_modifier_not_category_is' => '分类不为“:value”',
|
||||
'search_modifier_budget_is' => '预算是“:value”',
|
||||
'search_modifier_not_budget_is' => 'Budget is not ":value"',
|
||||
'search_modifier_not_budget_is' => '预算不为 “:value"',
|
||||
'search_modifier_bill_is' => '账单是“:value”',
|
||||
'search_modifier_not_bill_is' => 'Bill is not ":value"',
|
||||
'search_modifier_not_bill_is' => '账单不是 “:value”',
|
||||
'search_modifier_transaction_type' => '交易类型是“:value”',
|
||||
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
|
||||
'search_modifier_not_transaction_type' => '交易类型不为“:value”',
|
||||
'search_modifier_tag_is' => '标签是“:value”',
|
||||
'search_modifier_not_tag_is' => 'No tag is ":value"',
|
||||
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
|
||||
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
|
||||
'search_modifier_date_on_month' => 'Transaction is in month ":value"',
|
||||
'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"',
|
||||
'search_modifier_not_tag_is' => '标签不为":value"',
|
||||
'search_modifier_date_on_year' => '交易年份是 ":value"',
|
||||
'search_modifier_not_date_on_year' => '交易年份不是 ":value"',
|
||||
'search_modifier_date_on_month' => '交易月份是 ":value"',
|
||||
'search_modifier_not_date_on_month' => '交易月份不是 ":value"',
|
||||
'search_modifier_date_on_day' => '交易在月份中的日期 ":value"',
|
||||
'search_modifier_not_date_on_day' => '交易不在月中的日期 ":value"',
|
||||
'search_modifier_date_before_year' => '交易是在之前或当前的年份 “:value”',
|
||||
@ -491,19 +491,19 @@ return [
|
||||
'search_modifier_account_contains' => '其中一个账户包含":value"',
|
||||
'search_modifier_not_account_contains' => '两个帐户都包含 ":value"',
|
||||
'search_modifier_account_ends' => '其中一个账户结尾为 ":value"',
|
||||
'search_modifier_not_account_ends' => 'Neither account ends with ":value"',
|
||||
'search_modifier_not_account_ends' => '其中一个账户结尾是":value"',
|
||||
'search_modifier_account_starts' => '其中一个账户开头为":value"',
|
||||
'search_modifier_not_account_starts' => 'Neither account starts with ":value"',
|
||||
'search_modifier_not_account_starts' => '其中一个账户的开头是":value"',
|
||||
'search_modifier_account_nr_is' => '其中一个账户编号/IBAN为":value"',
|
||||
'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"',
|
||||
'search_modifier_not_account_nr_is' => '其中一个账户编号/IBAN是":value"',
|
||||
'search_modifier_account_nr_contains' => '其中一个账户编号/IBAN包含":value"',
|
||||
'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"',
|
||||
'search_modifier_not_account_nr_contains' => '其中一个账户编号/IBAN包含":value"',
|
||||
'search_modifier_account_nr_ends' => '其中一个账户编号/IBAN结尾为":value"',
|
||||
'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"',
|
||||
'search_modifier_not_account_nr_ends' => '其中一个账户编号/IBAN结尾是":value"',
|
||||
'search_modifier_account_nr_starts' => '其中一个账户编号/IBAN开头为":value"',
|
||||
'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"',
|
||||
'search_modifier_not_account_nr_starts' => '其中一个账户编号/IBAN开头是":value"',
|
||||
'search_modifier_category_contains' => '分类包含":value"',
|
||||
'search_modifier_not_category_contains' => 'Category does not contain ":value"',
|
||||
'search_modifier_not_category_contains' => '分类不包含":value"',
|
||||
'search_modifier_category_ends' => '分类结尾为“:value”',
|
||||
'search_modifier_not_category_ends' => 'Category does not end on ":value"',
|
||||
'search_modifier_category_starts' => '分类开头为":value"',
|
||||
@ -520,12 +520,12 @@ return [
|
||||
'search_modifier_not_bill_ends' => 'Bill does not end on ":value"',
|
||||
'search_modifier_bill_starts' => '账单开头为":value"',
|
||||
'search_modifier_not_bill_starts' => 'Bill does not start with ":value"',
|
||||
'search_modifier_external_id_contains' => 'External ID contains ":value"',
|
||||
'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"',
|
||||
'search_modifier_external_id_ends' => 'External ID ends with ":value"',
|
||||
'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"',
|
||||
'search_modifier_external_id_starts' => 'External ID starts with ":value"',
|
||||
'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"',
|
||||
'search_modifier_external_id_contains' => '外部ID包含 ":value"',
|
||||
'search_modifier_not_external_id_contains' => '外部ID不包含 ":value"',
|
||||
'search_modifier_external_id_ends' => '外部ID结尾是 ":value"',
|
||||
'search_modifier_not_external_id_ends' => '外部ID结尾不是 ":value"',
|
||||
'search_modifier_external_id_starts' => '外部ID开头是 ":value"',
|
||||
'search_modifier_not_external_id_starts' => '外部ID开头不是 ":value"',
|
||||
'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"',
|
||||
'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"',
|
||||
'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"',
|
||||
@ -545,8 +545,8 @@ return [
|
||||
'search_modifier_not_has_attachments' => '交易没有附件',
|
||||
'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.',
|
||||
'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.',
|
||||
'search_modifier_journal_id' => 'The journal ID is ":value"',
|
||||
'search_modifier_not_journal_id' => 'The journal ID is not ":value"',
|
||||
'search_modifier_journal_id' => '日志ID是":value"',
|
||||
'search_modifier_not_journal_id' => '日志ID不是":value"',
|
||||
'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"',
|
||||
'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"',
|
||||
'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"',
|
||||
@ -621,8 +621,8 @@ return [
|
||||
'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"',
|
||||
'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"',
|
||||
'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"',
|
||||
'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"',
|
||||
'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"',
|
||||
'search_modifier_invoice_date_on_year' => '交易发票日期的年份为":value"',
|
||||
'search_modifier_invoice_date_on_month' => '交易发票日期的月份为":value"',
|
||||
'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"',
|
||||
'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"',
|
||||
'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"',
|
||||
@ -680,7 +680,7 @@ return [
|
||||
'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"',
|
||||
'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"',
|
||||
'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"',
|
||||
'search_modifier_created_at_on' => 'Transaction was created on ":value"',
|
||||
'search_modifier_created_at_on' => '交易创建于":value"',
|
||||
'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"',
|
||||
'search_modifier_created_at_before' => 'Transaction was created on or before ":value"',
|
||||
'search_modifier_created_at_after' => 'Transaction was created on or after ":value"',
|
||||
@ -1071,82 +1071,82 @@ return [
|
||||
'rule_trigger_attachment_notes_starts' => '任意一个附件的备注开头为":trigger_value"',
|
||||
'rule_trigger_attachment_notes_ends_choice' => '任意一个附件的结尾为...',
|
||||
'rule_trigger_attachment_notes_ends' => '任意一个附件的备注结尾为":trigger_value"',
|
||||
'rule_trigger_reconciled_choice' => 'Transaction is reconciled',
|
||||
'rule_trigger_reconciled' => 'Transaction is reconciled',
|
||||
'rule_trigger_reconciled_choice' => '交易已对账',
|
||||
'rule_trigger_reconciled' => '交易已对账',
|
||||
'rule_trigger_exists_choice' => 'Any transaction matches(!)',
|
||||
'rule_trigger_exists' => 'Any transaction matches',
|
||||
|
||||
// more values for new types:
|
||||
'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"',
|
||||
'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"',
|
||||
'rule_trigger_not_transaction_type' => 'Transaction type is not ":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_account_id' => '账户ID不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_id' => '来源账户ID不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_id' => '目标账户ID不为":trigger_value"',
|
||||
'rule_trigger_not_transaction_type' => '交易类型不为":trigger_value"',
|
||||
'rule_trigger_not_tag_is' => '标签不为":trigger_value"',
|
||||
'rule_trigger_not_tag_is_not' => '标签为":trigger_value"',
|
||||
'rule_trigger_not_description_is' => '描述不为":trigger_value"',
|
||||
'rule_trigger_not_description_contains' => '描述不包含',
|
||||
'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_notes_is' => 'Notes are not ":trigger_value"',
|
||||
'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"',
|
||||
'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"',
|
||||
'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"',
|
||||
'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"',
|
||||
'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"',
|
||||
'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"',
|
||||
'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"',
|
||||
'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"',
|
||||
'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"',
|
||||
'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"',
|
||||
'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"',
|
||||
'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"',
|
||||
'rule_trigger_not_category_is' => 'Category is not ":trigger_value"',
|
||||
'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"',
|
||||
'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"',
|
||||
'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"',
|
||||
'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"',
|
||||
'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"',
|
||||
'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"',
|
||||
'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"',
|
||||
'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"',
|
||||
'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"',
|
||||
'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"',
|
||||
'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"',
|
||||
'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"',
|
||||
'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"',
|
||||
'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"',
|
||||
'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"',
|
||||
'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"',
|
||||
'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"',
|
||||
'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"',
|
||||
'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"',
|
||||
'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"',
|
||||
'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"',
|
||||
'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"',
|
||||
'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"',
|
||||
'rule_trigger_not_description_ends' => '描述结尾不为":trigger_value"',
|
||||
'rule_trigger_not_description_starts' => '描述开头不为":trigger_value"',
|
||||
'rule_trigger_not_notes_is' => '备注不为":trigger_value"',
|
||||
'rule_trigger_not_notes_contains' => '备注不含":trigger_value"',
|
||||
'rule_trigger_not_notes_ends' => '备注结尾不为":trigger_value"',
|
||||
'rule_trigger_not_notes_starts' => '备注开头不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_is' => '来源账户不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_contains' => '来源账户不含":trigger_value"',
|
||||
'rule_trigger_not_source_account_ends' => '来源账户结尾不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_starts' => '来源账户开头不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_is' => '来源账户编号 / IBAN 不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_contains' => '来源账户编号 / IBAN 不含":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_ends' => '来源账户编号 / IBAN 结尾不为":trigger_value"',
|
||||
'rule_trigger_not_source_account_nr_starts' => '来源账户编号 / IBAN 开头不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_is' => '目标账户不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_contains' => '目标账户不含":trigger_value"',
|
||||
'rule_trigger_not_destination_account_ends' => '目标账户结尾不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_starts' => '目标账户开头不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_is' => '目标账户编号 / IBAN 不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_contains' => '目标账户编号 / IBAN 不含":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_ends' => '目标账户编号 / IBAN 结尾不为":trigger_value"',
|
||||
'rule_trigger_not_destination_account_nr_starts' => '目标账户编号 / IBAN 开头不为":trigger_value"',
|
||||
'rule_trigger_not_account_is' => '其中一个账户为":trigger_value"',
|
||||
'rule_trigger_not_account_contains' => '其中一个账户包含":trigger_value"',
|
||||
'rule_trigger_not_account_ends' => '其中一个账户结尾为":trigger_value"',
|
||||
'rule_trigger_not_account_starts' => '其中一个账户开头为":trigger_value"',
|
||||
'rule_trigger_not_account_nr_is' => '其中一个账户编号 / IBAN 为":trigger_value"',
|
||||
'rule_trigger_not_account_nr_contains' => '其中一个账户编号 / IBAN 包含":trigger_value"',
|
||||
'rule_trigger_not_account_nr_ends' => '其中一个账户编号 / IBAN 结尾为":trigger_value"',
|
||||
'rule_trigger_not_account_nr_starts' => '其中一个账户编号 / IBAN 开头为":trigger_value"',
|
||||
'rule_trigger_not_category_is' => '分类不为":trigger_value"',
|
||||
'rule_trigger_not_category_contains' => '分类不含":trigger_value"',
|
||||
'rule_trigger_not_category_ends' => '分类结尾不为":trigger_value"',
|
||||
'rule_trigger_not_category_starts' => '分类开头不为":trigger_value"',
|
||||
'rule_trigger_not_budget_is' => '预算不为":trigger_value"',
|
||||
'rule_trigger_not_budget_contains' => '预算不含":trigger_value"',
|
||||
'rule_trigger_not_budget_ends' => '预算结尾不为":trigger_value"',
|
||||
'rule_trigger_not_budget_starts' => '预算开头不为":trigger_value"',
|
||||
'rule_trigger_not_bill_is' => '账单不为":trigger_value"',
|
||||
'rule_trigger_not_bill_contains' => '账单不包含":trigger_value"',
|
||||
'rule_trigger_not_bill_ends' => '账单结尾不为":trigger_value"',
|
||||
'rule_trigger_not_bill_starts' => '账单结尾不含":trigger_value"',
|
||||
'rule_trigger_not_external_id_is' => '外部ID不为":trigger_value"',
|
||||
'rule_trigger_not_external_id_contains' => '外部ID不包含":trigger_value"',
|
||||
'rule_trigger_not_external_id_ends' => '外部ID结尾不为":trigger_value"',
|
||||
'rule_trigger_not_external_id_starts' => '外部ID开头不为":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_is' => '内部引用不为":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_contains' => '内部引用不含":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_ends' => '内部引用结尾不为":trigger_value"',
|
||||
'rule_trigger_not_internal_reference_starts' => '内部引用开头不为":trigger_value"',
|
||||
'rule_trigger_not_external_url_is' => '外部URL不为":trigger_value"',
|
||||
'rule_trigger_not_external_url_contains' => '外部URL不含":trigger_value"',
|
||||
'rule_trigger_not_external_url_ends' => '外部URL结尾不为":trigger_value"',
|
||||
'rule_trigger_not_external_url_starts' => '外部URL开头不为":trigger_value"',
|
||||
'rule_trigger_not_currency_is' => '货币不为":trigger_value"',
|
||||
'rule_trigger_not_foreign_currency_is' => '外币不为":trigger_value"',
|
||||
'rule_trigger_not_id' => '交易ID不为":trigger_value"',
|
||||
'rule_trigger_not_journal_id' => '交易日志ID不为":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_date_on' => '日期不为":trigger_value"',
|
||||
'rule_trigger_not_date_before' => '日期不早于":trigger_value"',
|
||||
'rule_trigger_not_date_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"',
|
||||
@ -1166,8 +1166,8 @@ return [
|
||||
'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"',
|
||||
'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"',
|
||||
'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"',
|
||||
'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"',
|
||||
'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"',
|
||||
'rule_trigger_not_created_at_before' => '交易创建日期不早于":trigger_value"',
|
||||
'rule_trigger_not_created_at_after' => '交易创建日期不晚于":trigger_value"',
|
||||
'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"',
|
||||
'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"',
|
||||
@ -1185,14 +1185,14 @@ return [
|
||||
'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"',
|
||||
'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"',
|
||||
'rule_trigger_not_reconciled' => 'Transaction is not reconciled',
|
||||
'rule_trigger_not_exists' => 'Transaction does not exist',
|
||||
'rule_trigger_not_has_attachments' => 'Transaction has no attachments',
|
||||
'rule_trigger_not_has_any_category' => 'Transaction has no category',
|
||||
'rule_trigger_not_has_any_budget' => 'Transaction has no category',
|
||||
'rule_trigger_not_has_any_bill' => 'Transaction has no bill',
|
||||
'rule_trigger_not_has_any_tag' => 'Transaction has no tags',
|
||||
'rule_trigger_not_any_notes' => 'Transaction has no notes',
|
||||
'rule_trigger_not_reconciled' => '交易未对账',
|
||||
'rule_trigger_not_exists' => '交易不存在',
|
||||
'rule_trigger_not_has_attachments' => '交易不含附件',
|
||||
'rule_trigger_not_has_any_category' => '交易不含分类',
|
||||
'rule_trigger_not_has_any_budget' => '交易不含分类',
|
||||
'rule_trigger_not_has_any_bill' => '交易不含账单',
|
||||
'rule_trigger_not_has_any_tag' => '交易不含标签',
|
||||
'rule_trigger_not_any_notes' => '交易不含备注',
|
||||
'rule_trigger_not_any_external_url' => 'Transaction has no external URL',
|
||||
'rule_trigger_not_has_no_attachments' => 'Transaction has a (any) attachment(s)',
|
||||
'rule_trigger_not_has_no_category' => 'Transaction has a (any) category',
|
||||
@ -1234,10 +1234,10 @@ return [
|
||||
'rule_action_clear_category_choice' => '清空任何分类',
|
||||
'rule_action_set_budget_choice' => 'Set budget to ..',
|
||||
'rule_action_clear_budget_choice' => '清空任何预算',
|
||||
'rule_action_add_tag_choice' => 'Add tag ..',
|
||||
'rule_action_remove_tag_choice' => 'Remove tag ..',
|
||||
'rule_action_add_tag_choice' => '添加标签..',
|
||||
'rule_action_remove_tag_choice' => '移除标签..',
|
||||
'rule_action_remove_all_tags_choice' => '移除所有标签',
|
||||
'rule_action_set_description_choice' => 'Set description to ..',
|
||||
'rule_action_set_description_choice' => '设置描述为',
|
||||
'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 ..',
|
||||
@ -1252,7 +1252,7 @@ return [
|
||||
'rule_action_prepend_notes' => '备注前添加“:action_value”',
|
||||
'rule_action_clear_notes_choice' => '移除所有备注',
|
||||
'rule_action_clear_notes' => '移除所有备注',
|
||||
'rule_action_set_notes_choice' => 'Set notes to ..',
|
||||
'rule_action_set_notes_choice' => '设置备注为..',
|
||||
'rule_action_link_to_bill_choice' => '关联至账单…',
|
||||
'rule_action_link_to_bill' => '关联至账单“:action_value”',
|
||||
'rule_action_set_notes' => '设定备注至“:action_value”',
|
||||
@ -1264,8 +1264,8 @@ return [
|
||||
'rule_action_convert_transfer' => '转换交易为与“:action_value”间的转账',
|
||||
'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes',
|
||||
'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description',
|
||||
'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description',
|
||||
'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes',
|
||||
'rule_action_move_descr_to_notes_choice' => '用描述替换当前交易备注',
|
||||
'rule_action_move_notes_to_descr_choice' => '用交易的备注替换当前描述',
|
||||
'rule_action_append_descr_to_notes' => 'Append description to notes',
|
||||
'rule_action_append_notes_to_descr' => 'Append notes to description',
|
||||
'rule_action_move_descr_to_notes' => 'Replace notes with description',
|
||||
@ -1306,7 +1306,7 @@ return [
|
||||
'dark_mode_option_light' => 'Always light',
|
||||
'dark_mode_option_dark' => 'Always dark',
|
||||
'equal_to_language' => '(与语言相同)',
|
||||
'dark_mode_preference' => 'Dark mode',
|
||||
'dark_mode_preference' => '夜间模式',
|
||||
'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.',
|
||||
'pref_home_screen_accounts' => '主屏幕账户',
|
||||
'pref_home_screen_accounts_help' => '哪些账户应该显示在主屏幕上?',
|
||||
@ -2572,7 +2572,7 @@ return [
|
||||
'no_bills_create_default' => '创建账单',
|
||||
|
||||
// recurring transactions
|
||||
'create_right_now' => '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 停止重复。',
|
||||
@ -2693,20 +2693,20 @@ return [
|
||||
'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"',
|
||||
'ale_action_clear_budget' => '已从预算中移除',
|
||||
'ale_action_clear_category' => '已从分类中删除',
|
||||
'ale_action_clear_notes' => 'Removed notes',
|
||||
'ale_action_clear_tag' => 'Cleared tag',
|
||||
'ale_action_clear_all_tags' => 'Cleared all tags',
|
||||
'ale_action_set_bill' => 'Linked to bill',
|
||||
'ale_action_set_budget' => 'Set budget',
|
||||
'ale_action_set_category' => 'Set category',
|
||||
'ale_action_set_source' => 'Set source account',
|
||||
'ale_action_set_destination' => 'Set destination account',
|
||||
'ale_action_update_transaction_type' => 'Changed transaction type',
|
||||
'ale_action_update_notes' => 'Changed notes',
|
||||
'ale_action_update_description' => 'Changed description',
|
||||
'ale_action_clear_notes' => '移除备注',
|
||||
'ale_action_clear_tag' => '清除标签',
|
||||
'ale_action_clear_all_tags' => '清除所有标签',
|
||||
'ale_action_set_bill' => '关联账单',
|
||||
'ale_action_set_budget' => '设置预算',
|
||||
'ale_action_set_category' => '设置分类',
|
||||
'ale_action_set_source' => '设置来源账户',
|
||||
'ale_action_set_destination' => '设置目标账户',
|
||||
'ale_action_update_transaction_type' => '更改交易类型',
|
||||
'ale_action_update_notes' => '更改备注',
|
||||
'ale_action_update_description' => '更改描述',
|
||||
'ale_action_add_to_piggy' => '存钱罐',
|
||||
'ale_action_remove_from_piggy' => '存钱罐',
|
||||
'ale_action_add_tag' => 'Added tag',
|
||||
'ale_action_add_tag' => '添加标签',
|
||||
|
||||
];
|
||||
|
||||
|
@ -150,7 +150,7 @@ return [
|
||||
'start' => '范围起始',
|
||||
'end' => '范围结束',
|
||||
'delete_account' => '删除账户“:name”',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_webhook' => '删除推送":title"',
|
||||
'delete_bill' => '删除账单“:name”',
|
||||
'delete_budget' => '删除预算“:name”',
|
||||
'delete_category' => '删除分类“:name”',
|
||||
@ -171,7 +171,7 @@ return [
|
||||
'object_group_areYouSure' => '您确定要删除组“:title”吗?',
|
||||
'ruleGroup_areYouSure' => '您确定要删除规则组“:title”吗?',
|
||||
'budget_areYouSure' => '您确定要删除预算“:name”吗?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'webhook_areYouSure' => '您确定要删除推送":title"吗?',
|
||||
'category_areYouSure' => '您确定要删除分类“:name”吗?',
|
||||
'recurring_areYouSure' => '您确定要删除定期交易“:title”吗?',
|
||||
'currency_areYouSure' => '您确定要删除货币“:name”吗?',
|
||||
@ -299,9 +299,9 @@ return [
|
||||
'submitted' => '已提交',
|
||||
'key' => '按键',
|
||||
'value' => '记录内容',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
'webhook_delivery' => '发送格式',
|
||||
'webhook_response' => '响应内容',
|
||||
'webhook_trigger' => '触发条件',
|
||||
];
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -66,9 +66,9 @@ return [
|
||||
'require_currency_info' => '此字段需要货币信息',
|
||||
'not_transfer_account' => '此账户无法用于转账',
|
||||
'require_currency_amount' => '此字段需要外币信息',
|
||||
'require_foreign_currency' => 'This field requires a number',
|
||||
'require_foreign_dest' => 'This field value must match the currency of the destination account.',
|
||||
'require_foreign_src' => 'This field value must match the currency of the source account.',
|
||||
'require_foreign_currency' => '此字段要求为数字',
|
||||
'require_foreign_dest' => '此字段值必须与目标账户的货币相匹配',
|
||||
'require_foreign_src' => '此字段值必须与来源账户的货币相匹配',
|
||||
'equal_description' => '交易描述和全局描述不应相同',
|
||||
'file_invalid_mime' => '文件“:name”的类型为“:mime”,系统禁止上传此类型的文件',
|
||||
'file_too_large' => '文件“:name”过大',
|
||||
@ -234,7 +234,7 @@ 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".',
|
||||
'reconciliation_source_bad_data' => '在搜索ID“:id”或名称“:name”时,没有找到有效的对账帐户',
|
||||
|
||||
'generic_source_bad_data' => '搜索 ID “:id”或名称“:name”时找不到有效的来源账户',
|
||||
|
||||
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => '您不能使用此账户作为来源账户',
|
||||
'generic_invalid_destination' => '您不能使用此账户作为目标账户',
|
||||
|
||||
'generic_no_source' => '您必须提交源账户信息。',
|
||||
'generic_no_destination' => '您必须提交目标账户信息。',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => ':attribute 必须大于或等于 :value',
|
||||
'gt.numeric' => ':attribute 必须大于 :value',
|
||||
@ -285,7 +285,7 @@ return [
|
||||
'auto_budget_period_mandatory' => '自动预算周期是必填项',
|
||||
|
||||
// no access to administration:
|
||||
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
||||
'no_access_user_group' => '您没有管理员访问权限',
|
||||
];
|
||||
|
||||
/*
|
||||
|
@ -271,8 +271,8 @@ return [
|
||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||
|
||||
'generic_no_source' => 'You must submit source account information.',
|
||||
'generic_no_destination' => 'You must submit destination account information.',
|
||||
'generic_no_source' => 'You must submit source account information or submit a transaction journal ID.',
|
||||
'generic_no_destination' => 'You must submit destination account information or submit a transaction journal ID.',
|
||||
|
||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||
|
368
yarn.lock
368
yarn.lock
@ -1042,9 +1042,9 @@
|
||||
"@babel/types" "^7.0.0"
|
||||
|
||||
"@types/babel__traverse@*":
|
||||
version "7.18.3"
|
||||
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d"
|
||||
integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==
|
||||
version "7.18.5"
|
||||
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80"
|
||||
integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==
|
||||
dependencies:
|
||||
"@babel/types" "^7.3.0"
|
||||
|
||||
@ -1072,9 +1072,9 @@
|
||||
source-map "^0.6.0"
|
||||
|
||||
"@types/connect-history-api-fallback@^1.3.5":
|
||||
version "1.3.5"
|
||||
resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz#d1f7a8a09d0ed5a57aee5ae9c18ab9b803205dae"
|
||||
integrity sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==
|
||||
version "1.5.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#9fd20b3974bdc2bcd4ac6567e2e0f6885cb2cf41"
|
||||
integrity sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==
|
||||
dependencies:
|
||||
"@types/express-serve-static-core" "*"
|
||||
"@types/node" "*"
|
||||
@ -1103,18 +1103,19 @@
|
||||
"@types/json-schema" "*"
|
||||
|
||||
"@types/estree@*", "@types/estree@^1.0.0":
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2"
|
||||
integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194"
|
||||
integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==
|
||||
|
||||
"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33":
|
||||
version "4.17.33"
|
||||
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz#de35d30a9d637dc1450ad18dd583d75d5733d543"
|
||||
integrity sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==
|
||||
version "4.17.34"
|
||||
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz#c119e85b75215178bc127de588e93100698ab4cc"
|
||||
integrity sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
"@types/qs" "*"
|
||||
"@types/range-parser" "*"
|
||||
"@types/send" "*"
|
||||
|
||||
"@types/express@*", "@types/express@^4.17.13":
|
||||
version "4.17.17"
|
||||
@ -1135,9 +1136,9 @@
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/http-proxy@^1.17.8":
|
||||
version "1.17.10"
|
||||
resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.10.tgz#e576c8e4a0cc5c6a138819025a88e167ebb38d6c"
|
||||
integrity sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==
|
||||
version "1.17.11"
|
||||
resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293"
|
||||
integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
|
||||
@ -1187,15 +1188,20 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
|
||||
integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
|
||||
|
||||
"@types/mime@^1":
|
||||
version "1.3.2"
|
||||
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
|
||||
integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
|
||||
|
||||
"@types/minimatch@*":
|
||||
version "5.1.2"
|
||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca"
|
||||
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
|
||||
|
||||
"@types/node@*":
|
||||
version "18.15.11"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.11.tgz#b3b790f09cb1696cffcec605de025b088fa4225f"
|
||||
integrity sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==
|
||||
version "18.16.2"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.2.tgz#2f610ea71034b3971c312192377f8a7178eb57f1"
|
||||
integrity sha512-GQW/JL/5Fz/0I8RpeBG9lKp0+aNcXEaVL71c0D2Q0QHDTFvlYKT7an0onCUXj85anv7b4/WesqdfchLc0jtsCg==
|
||||
|
||||
"@types/parse-json@^4.0.0":
|
||||
version "4.0.0"
|
||||
@ -1217,6 +1223,14 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
|
||||
integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
|
||||
|
||||
"@types/send@*":
|
||||
version "0.17.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301"
|
||||
integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==
|
||||
dependencies:
|
||||
"@types/mime" "^1"
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/serve-index@^1.9.1":
|
||||
version "1.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278"
|
||||
@ -1334,125 +1348,125 @@
|
||||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.47.tgz#e597ef75086c6e896ff5478a6bfc0a7aa4bbd14c"
|
||||
integrity sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==
|
||||
|
||||
"@webassemblyjs/ast@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7"
|
||||
integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==
|
||||
"@webassemblyjs/ast@1.11.5", "@webassemblyjs/ast@^1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.5.tgz#6e818036b94548c1fb53b754b5cae3c9b208281c"
|
||||
integrity sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==
|
||||
dependencies:
|
||||
"@webassemblyjs/helper-numbers" "1.11.1"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||
"@webassemblyjs/helper-numbers" "1.11.5"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.5"
|
||||
|
||||
"@webassemblyjs/floating-point-hex-parser@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f"
|
||||
integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==
|
||||
"@webassemblyjs/floating-point-hex-parser@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz#e85dfdb01cad16b812ff166b96806c050555f1b4"
|
||||
integrity sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==
|
||||
|
||||
"@webassemblyjs/helper-api-error@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16"
|
||||
integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==
|
||||
"@webassemblyjs/helper-api-error@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz#1e82fa7958c681ddcf4eabef756ce09d49d442d1"
|
||||
integrity sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==
|
||||
|
||||
"@webassemblyjs/helper-buffer@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5"
|
||||
integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==
|
||||
"@webassemblyjs/helper-buffer@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz#91381652ea95bb38bbfd270702351c0c89d69fba"
|
||||
integrity sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==
|
||||
|
||||
"@webassemblyjs/helper-numbers@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae"
|
||||
integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==
|
||||
"@webassemblyjs/helper-numbers@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz#23380c910d56764957292839006fecbe05e135a9"
|
||||
integrity sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==
|
||||
dependencies:
|
||||
"@webassemblyjs/floating-point-hex-parser" "1.11.1"
|
||||
"@webassemblyjs/helper-api-error" "1.11.1"
|
||||
"@webassemblyjs/floating-point-hex-parser" "1.11.5"
|
||||
"@webassemblyjs/helper-api-error" "1.11.5"
|
||||
"@xtuc/long" "4.2.2"
|
||||
|
||||
"@webassemblyjs/helper-wasm-bytecode@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1"
|
||||
integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==
|
||||
"@webassemblyjs/helper-wasm-bytecode@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz#e258a25251bc69a52ef817da3001863cc1c24b9f"
|
||||
integrity sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==
|
||||
|
||||
"@webassemblyjs/helper-wasm-section@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a"
|
||||
integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==
|
||||
"@webassemblyjs/helper-wasm-section@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz#966e855a6fae04d5570ad4ec87fbcf29b42ba78e"
|
||||
integrity sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/helper-buffer" "1.11.1"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||
"@webassemblyjs/wasm-gen" "1.11.1"
|
||||
"@webassemblyjs/ast" "1.11.5"
|
||||
"@webassemblyjs/helper-buffer" "1.11.5"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.5"
|
||||
"@webassemblyjs/wasm-gen" "1.11.5"
|
||||
|
||||
"@webassemblyjs/ieee754@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614"
|
||||
integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==
|
||||
"@webassemblyjs/ieee754@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz#b2db1b33ce9c91e34236194c2b5cba9b25ca9d60"
|
||||
integrity sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==
|
||||
dependencies:
|
||||
"@xtuc/ieee754" "^1.2.0"
|
||||
|
||||
"@webassemblyjs/leb128@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5"
|
||||
integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==
|
||||
"@webassemblyjs/leb128@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.5.tgz#482e44d26b6b949edf042a8525a66c649e38935a"
|
||||
integrity sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==
|
||||
dependencies:
|
||||
"@xtuc/long" "4.2.2"
|
||||
|
||||
"@webassemblyjs/utf8@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff"
|
||||
integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==
|
||||
"@webassemblyjs/utf8@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.5.tgz#83bef94856e399f3740e8df9f63bc47a987eae1a"
|
||||
integrity sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==
|
||||
|
||||
"@webassemblyjs/wasm-edit@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6"
|
||||
integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==
|
||||
"@webassemblyjs/wasm-edit@^1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz#93ee10a08037657e21c70de31c47fdad6b522b2d"
|
||||
integrity sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/helper-buffer" "1.11.1"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||
"@webassemblyjs/helper-wasm-section" "1.11.1"
|
||||
"@webassemblyjs/wasm-gen" "1.11.1"
|
||||
"@webassemblyjs/wasm-opt" "1.11.1"
|
||||
"@webassemblyjs/wasm-parser" "1.11.1"
|
||||
"@webassemblyjs/wast-printer" "1.11.1"
|
||||
"@webassemblyjs/ast" "1.11.5"
|
||||
"@webassemblyjs/helper-buffer" "1.11.5"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.5"
|
||||
"@webassemblyjs/helper-wasm-section" "1.11.5"
|
||||
"@webassemblyjs/wasm-gen" "1.11.5"
|
||||
"@webassemblyjs/wasm-opt" "1.11.5"
|
||||
"@webassemblyjs/wasm-parser" "1.11.5"
|
||||
"@webassemblyjs/wast-printer" "1.11.5"
|
||||
|
||||
"@webassemblyjs/wasm-gen@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76"
|
||||
integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==
|
||||
"@webassemblyjs/wasm-gen@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz#ceb1c82b40bf0cf67a492c53381916756ef7f0b1"
|
||||
integrity sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||
"@webassemblyjs/ieee754" "1.11.1"
|
||||
"@webassemblyjs/leb128" "1.11.1"
|
||||
"@webassemblyjs/utf8" "1.11.1"
|
||||
"@webassemblyjs/ast" "1.11.5"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.5"
|
||||
"@webassemblyjs/ieee754" "1.11.5"
|
||||
"@webassemblyjs/leb128" "1.11.5"
|
||||
"@webassemblyjs/utf8" "1.11.5"
|
||||
|
||||
"@webassemblyjs/wasm-opt@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2"
|
||||
integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==
|
||||
"@webassemblyjs/wasm-opt@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz#b52bac29681fa62487e16d3bb7f0633d5e62ca0a"
|
||||
integrity sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/helper-buffer" "1.11.1"
|
||||
"@webassemblyjs/wasm-gen" "1.11.1"
|
||||
"@webassemblyjs/wasm-parser" "1.11.1"
|
||||
"@webassemblyjs/ast" "1.11.5"
|
||||
"@webassemblyjs/helper-buffer" "1.11.5"
|
||||
"@webassemblyjs/wasm-gen" "1.11.5"
|
||||
"@webassemblyjs/wasm-parser" "1.11.5"
|
||||
|
||||
"@webassemblyjs/wasm-parser@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199"
|
||||
integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==
|
||||
"@webassemblyjs/wasm-parser@1.11.5", "@webassemblyjs/wasm-parser@^1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz#7ba0697ca74c860ea13e3ba226b29617046982e2"
|
||||
integrity sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/helper-api-error" "1.11.1"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||
"@webassemblyjs/ieee754" "1.11.1"
|
||||
"@webassemblyjs/leb128" "1.11.1"
|
||||
"@webassemblyjs/utf8" "1.11.1"
|
||||
"@webassemblyjs/ast" "1.11.5"
|
||||
"@webassemblyjs/helper-api-error" "1.11.5"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.5"
|
||||
"@webassemblyjs/ieee754" "1.11.5"
|
||||
"@webassemblyjs/leb128" "1.11.5"
|
||||
"@webassemblyjs/utf8" "1.11.5"
|
||||
|
||||
"@webassemblyjs/wast-printer@1.11.1":
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0"
|
||||
integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==
|
||||
"@webassemblyjs/wast-printer@1.11.5":
|
||||
version "1.11.5"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz#7a5e9689043f3eca82d544d7be7a8e6373a6fa98"
|
||||
integrity sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/ast" "1.11.5"
|
||||
"@xtuc/long" "4.2.2"
|
||||
|
||||
"@webpack-cli/configtest@^1.2.0":
|
||||
@ -1512,7 +1526,7 @@ ajv-keywords@^3.5.2:
|
||||
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
|
||||
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
|
||||
|
||||
ajv-keywords@^5.0.0:
|
||||
ajv-keywords@^5.1.0:
|
||||
version "5.1.0"
|
||||
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
|
||||
integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
|
||||
@ -1529,7 +1543,7 @@ ajv@^6.12.4, ajv@^6.12.5:
|
||||
json-schema-traverse "^0.4.1"
|
||||
uri-js "^4.2.2"
|
||||
|
||||
ajv@^8.0.0, ajv@^8.8.0:
|
||||
ajv@^8.0.0, ajv@^8.9.0:
|
||||
version "8.12.0"
|
||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
|
||||
integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
|
||||
@ -1622,9 +1636,9 @@ autoprefixer@^10.4.0:
|
||||
postcss-value-parser "^4.2.0"
|
||||
|
||||
axios@^1.3:
|
||||
version "1.3.6"
|
||||
resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.6.tgz#1ace9a9fb994314b5f6327960918406fa92c6646"
|
||||
integrity sha512-PEcdkk7JcdPiMDkvM4K6ZBRYq9keuVJsToxm2zQIM70Qqo2WHTdJZMXcG9X+RmRp2VPNUQC8W1RAGbgt6b1yMg==
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/axios/-/axios-1.4.0.tgz#38a7bf1224cd308de271146038b551d725f0be1f"
|
||||
integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==
|
||||
dependencies:
|
||||
follow-redirects "^1.15.0"
|
||||
form-data "^4.0.0"
|
||||
@ -1899,9 +1913,9 @@ caniuse-api@^3.0.0:
|
||||
lodash.uniq "^4.5.0"
|
||||
|
||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464:
|
||||
version "1.0.30001478"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001478.tgz#0ef8a1cf8b16be47a0f9fc4ecfc952232724b32a"
|
||||
integrity sha512-gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw==
|
||||
version "1.0.30001481"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz#f58a717afe92f9e69d0e35ff64df596bfad93912"
|
||||
integrity sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==
|
||||
|
||||
chalk@^2.0.0:
|
||||
version "2.4.2"
|
||||
@ -2029,9 +2043,9 @@ colord@^2.9.1:
|
||||
integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
|
||||
|
||||
colorette@^2.0.10, colorette@^2.0.14:
|
||||
version "2.0.19"
|
||||
resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798"
|
||||
integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==
|
||||
version "2.0.20"
|
||||
resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
|
||||
integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
|
||||
|
||||
combined-stream@^1.0.8:
|
||||
version "1.0.8"
|
||||
@ -2440,9 +2454,9 @@ dns-equal@^1.0.0:
|
||||
integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
|
||||
|
||||
dns-packet@^5.2.2:
|
||||
version "5.5.0"
|
||||
resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.5.0.tgz#f59cbf3396c130957c56a6ad5fd3959ccdc30065"
|
||||
integrity sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==
|
||||
version "5.6.0"
|
||||
resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.0.tgz#2202c947845c7a63c23ece58f2f70ff6ab4c2f7d"
|
||||
integrity sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==
|
||||
dependencies:
|
||||
"@leichtgewicht/ip-codec" "^2.0.1"
|
||||
|
||||
@ -2512,9 +2526,9 @@ ee-first@1.1.1:
|
||||
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
|
||||
|
||||
electron-to-chromium@^1.4.284:
|
||||
version "1.4.365"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.365.tgz#ccd9e352d4493aa288d87e6ea36f3edf350c045e"
|
||||
integrity sha512-FRHZO+1tUNO4TOPXmlxetkoaIY8uwHzd1kKopK/Gx2SKn1L47wJXWD44wxP5CGRyyP98z/c8e1eBzJrgPeiBOg==
|
||||
version "1.4.376"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.376.tgz#a771d6c4db028634df126348a4f94075e07e7f65"
|
||||
integrity sha512-TFeOKd98TpJzRHkr4Aorn16QkMnuCQuGAE6IZ0wYF+qkbSfMPqjplvRppR02tMUpVxZz8nyBNvVm9lIZsqrbPQ==
|
||||
|
||||
elliptic@^6.5.3:
|
||||
version "6.5.4"
|
||||
@ -2544,10 +2558,10 @@ encodeurl@~1.0.2:
|
||||
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
||||
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
|
||||
|
||||
enhanced-resolve@^5.10.0:
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634"
|
||||
integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==
|
||||
enhanced-resolve@^5.13.0:
|
||||
version "5.13.0"
|
||||
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz#26d1ecc448c02de997133217b5c1053f34a0a275"
|
||||
integrity sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==
|
||||
dependencies:
|
||||
graceful-fs "^4.2.4"
|
||||
tapable "^2.2.0"
|
||||
@ -3214,7 +3228,7 @@ is-buffer@~1.1.6:
|
||||
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
||||
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
||||
|
||||
is-core-module@^2.12.0:
|
||||
is-core-module@^2.11.0:
|
||||
version "2.12.0"
|
||||
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4"
|
||||
integrity sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==
|
||||
@ -3563,9 +3577,9 @@ media-typer@0.3.0:
|
||||
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
|
||||
|
||||
memfs@^3.4.3:
|
||||
version "3.5.0"
|
||||
resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.0.tgz#9da86405fca0a539addafd37dbd452344fd1c0bd"
|
||||
integrity sha512-yK6o8xVJlQerz57kvPROwTMgx5WtGwC2ZxDtOUsnGl49rHjYkfQoPNZPCKH73VdLE1BwBu/+Fx/NL8NYMUw2aA==
|
||||
version "3.5.1"
|
||||
resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.1.tgz#f0cd1e2bfaef58f6fe09bfb9c2288f07fea099ec"
|
||||
integrity sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==
|
||||
dependencies:
|
||||
fs-monkey "^1.0.3"
|
||||
|
||||
@ -4278,9 +4292,9 @@ postcss@^8.1.10, postcss@^8.2.15, postcss@^8.4, postcss@^8.4.14:
|
||||
source-map-js "^1.0.2"
|
||||
|
||||
"prettier@^1.18.2 || ^2.0.0":
|
||||
version "2.8.7"
|
||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450"
|
||||
integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==
|
||||
version "2.8.8"
|
||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
|
||||
integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
|
||||
|
||||
pretty-time@^1.1.0:
|
||||
version "1.1.0"
|
||||
@ -4516,11 +4530,11 @@ resolve-from@^5.0.0:
|
||||
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
|
||||
|
||||
resolve@^1.14.2, resolve@^1.9.0:
|
||||
version "1.22.3"
|
||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.3.tgz#4b4055349ffb962600972da1fdc33c46a4eb3283"
|
||||
integrity sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==
|
||||
version "1.22.2"
|
||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
|
||||
integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
|
||||
dependencies:
|
||||
is-core-module "^2.12.0"
|
||||
is-core-module "^2.11.0"
|
||||
path-parse "^1.0.7"
|
||||
supports-preserve-symlinks-flag "^1.0.0"
|
||||
|
||||
@ -4580,24 +4594,24 @@ schema-utils@^2.6.5:
|
||||
ajv "^6.12.4"
|
||||
ajv-keywords "^3.5.2"
|
||||
|
||||
schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
|
||||
integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
|
||||
schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.1.2:
|
||||
version "3.1.2"
|
||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.2.tgz#36c10abca6f7577aeae136c804b0c741edeadc99"
|
||||
integrity sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==
|
||||
dependencies:
|
||||
"@types/json-schema" "^7.0.8"
|
||||
ajv "^6.12.5"
|
||||
ajv-keywords "^3.5.2"
|
||||
|
||||
schema-utils@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7"
|
||||
integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==
|
||||
version "4.0.1"
|
||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.1.tgz#eb2d042df8b01f4b5c276a2dfd41ba0faab72e8d"
|
||||
integrity sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==
|
||||
dependencies:
|
||||
"@types/json-schema" "^7.0.9"
|
||||
ajv "^8.8.0"
|
||||
ajv "^8.9.0"
|
||||
ajv-formats "^2.1.1"
|
||||
ajv-keywords "^5.0.0"
|
||||
ajv-keywords "^5.1.0"
|
||||
|
||||
select-hose@^2.0.0:
|
||||
version "2.0.0"
|
||||
@ -4617,9 +4631,9 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
|
||||
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
||||
|
||||
semver@^7.3.2, semver@^7.3.5:
|
||||
version "7.4.0"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.4.0.tgz#8481c92feffc531ab1e012a8ffc15bdd3a0f4318"
|
||||
integrity sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==
|
||||
version "7.5.0"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0"
|
||||
integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==
|
||||
dependencies:
|
||||
lru-cache "^6.0.0"
|
||||
|
||||
@ -4966,9 +4980,9 @@ terser@^4.6.3:
|
||||
source-map-support "~0.5.12"
|
||||
|
||||
terser@^5.16.5, terser@^5.9.0:
|
||||
version "5.16.9"
|
||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.9.tgz#7a28cb178e330c484369886f2afd623d9847495f"
|
||||
integrity sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==
|
||||
version "5.17.1"
|
||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.17.1.tgz#948f10830454761e2eeedc6debe45c532c83fd69"
|
||||
integrity sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==
|
||||
dependencies:
|
||||
"@jridgewell/source-map" "^0.3.2"
|
||||
acorn "^8.5.0"
|
||||
@ -5069,9 +5083,9 @@ unpipe@1.0.0, unpipe@~1.0.0:
|
||||
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
|
||||
|
||||
update-browserslist-db@^1.0.10:
|
||||
version "1.0.10"
|
||||
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
|
||||
integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
|
||||
version "1.0.11"
|
||||
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
|
||||
integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
|
||||
dependencies:
|
||||
escalade "^3.1.1"
|
||||
picocolors "^1.0.0"
|
||||
@ -5230,9 +5244,9 @@ webpack-dev-middleware@^5.3.1:
|
||||
schema-utils "^4.0.0"
|
||||
|
||||
webpack-dev-server@^4.7.3:
|
||||
version "4.13.2"
|
||||
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz#d97445481d78691efe6d9a3b230833d802fc31f9"
|
||||
integrity sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==
|
||||
version "4.13.3"
|
||||
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.13.3.tgz#9feb740b8b56b886260bae1360286818a221bae8"
|
||||
integrity sha512-KqqzrzMRSRy5ePz10VhjyL27K2dxqwXQLP5rAKwRJBPUahe7Z2bBWzHw37jeb8GCPKxZRO79ZdQUAPesMh/Nug==
|
||||
dependencies:
|
||||
"@types/bonjour" "^3.5.9"
|
||||
"@types/connect-history-api-fallback" "^1.3.5"
|
||||
@ -5295,20 +5309,20 @@ webpack-sources@^3.2.3:
|
||||
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
|
||||
|
||||
webpack@^5.60.0:
|
||||
version "5.79.0"
|
||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.79.0.tgz#8552b5da5a26e4e25842c08a883e08fc7740547a"
|
||||
integrity sha512-3mN4rR2Xq+INd6NnYuL9RC9GAmc1ROPKJoHhrZ4pAjdMFEkJJWrsPw8o2JjCIyQyTu7rTXYn4VG6OpyB3CobZg==
|
||||
version "5.81.0"
|
||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.81.0.tgz#27a2e8466c8b4820d800a8d90f06ef98294f9956"
|
||||
integrity sha512-AAjaJ9S4hYCVODKLQTgG5p5e11hiMawBwV2v8MYLE0C/6UAGLuAF4n1qa9GOwdxnicaP+5k6M5HrLmD4+gIB8Q==
|
||||
dependencies:
|
||||
"@types/eslint-scope" "^3.7.3"
|
||||
"@types/estree" "^1.0.0"
|
||||
"@webassemblyjs/ast" "1.11.1"
|
||||
"@webassemblyjs/wasm-edit" "1.11.1"
|
||||
"@webassemblyjs/wasm-parser" "1.11.1"
|
||||
"@webassemblyjs/ast" "^1.11.5"
|
||||
"@webassemblyjs/wasm-edit" "^1.11.5"
|
||||
"@webassemblyjs/wasm-parser" "^1.11.5"
|
||||
acorn "^8.7.1"
|
||||
acorn-import-assertions "^1.7.6"
|
||||
browserslist "^4.14.5"
|
||||
chrome-trace-event "^1.0.2"
|
||||
enhanced-resolve "^5.10.0"
|
||||
enhanced-resolve "^5.13.0"
|
||||
es-module-lexer "^1.2.1"
|
||||
eslint-scope "5.1.1"
|
||||
events "^3.2.0"
|
||||
@ -5318,7 +5332,7 @@ webpack@^5.60.0:
|
||||
loader-runner "^4.2.0"
|
||||
mime-types "^2.1.27"
|
||||
neo-async "^2.6.2"
|
||||
schema-utils "^3.1.0"
|
||||
schema-utils "^3.1.2"
|
||||
tapable "^2.1.1"
|
||||
terser-webpack-plugin "^5.3.7"
|
||||
watchpack "^2.4.0"
|
||||
@ -5356,9 +5370,9 @@ which@^2.0.1, which@^2.0.2:
|
||||
isexe "^2.0.0"
|
||||
|
||||
wildcard@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
|
||||
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67"
|
||||
integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==
|
||||
|
||||
wrap-ansi@^7.0.0:
|
||||
version "7.0.0"
|
||||
@ -5415,9 +5429,9 @@ yargs-parser@^21.1.1:
|
||||
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
|
||||
|
||||
yargs@^17.2.1:
|
||||
version "17.7.1"
|
||||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967"
|
||||
integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==
|
||||
version "17.7.2"
|
||||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
|
||||
integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
|
||||
dependencies:
|
||||
cliui "^8.0.1"
|
||||
escalade "^3.1.1"
|
||||
|
Loading…
Reference in New Issue
Block a user