mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Merge branch 'develop' of github.com:firefly-iii/firefly-iii into develop
This commit is contained in:
commit
d7fa8b283e
@ -51,7 +51,7 @@ class NetWorth implements NetWorthInterface
|
|||||||
|
|
||||||
private CurrencyRepositoryInterface $currencyRepos;
|
private CurrencyRepositoryInterface $currencyRepos;
|
||||||
private User $user;
|
private User $user;
|
||||||
private null|UserGroup $userGroup;
|
private ?UserGroup $userGroup;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method collects the user's net worth in ALL the user's currencies
|
* This method collects the user's net worth in ALL the user's currencies
|
||||||
|
@ -39,7 +39,7 @@ class RemoteUserGuard implements Guard
|
|||||||
{
|
{
|
||||||
protected Application $application;
|
protected Application $application;
|
||||||
protected UserProvider $provider;
|
protected UserProvider $provider;
|
||||||
protected null|User $user;
|
protected ?User $user;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new authentication guard.
|
* Create a new authentication guard.
|
||||||
|
@ -41,7 +41,7 @@ class RemoteUserProvider implements UserProvider
|
|||||||
*
|
*
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
public function retrieveByCredentials(array $credentials): null|Authenticatable
|
public function retrieveByCredentials(array $credentials): ?Authenticatable
|
||||||
{
|
{
|
||||||
app('log')->debug(sprintf('Now at %s', __METHOD__));
|
app('log')->debug(sprintf('Now at %s', __METHOD__));
|
||||||
|
|
||||||
@ -88,7 +88,7 @@ class RemoteUserProvider implements UserProvider
|
|||||||
*
|
*
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
public function retrieveByToken($identifier, $token): null|Authenticatable
|
public function retrieveByToken($identifier, $token): ?Authenticatable
|
||||||
{
|
{
|
||||||
app('log')->debug(sprintf('Now at %s', __METHOD__));
|
app('log')->debug(sprintf('Now at %s', __METHOD__));
|
||||||
|
|
||||||
|
@ -645,7 +645,7 @@ class FireflyValidator extends Validator
|
|||||||
/**
|
/**
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
public function validateUniqueCurrencyCode(null|string $attribute, null|string $value): bool
|
public function validateUniqueCurrencyCode(?string $attribute, ?string $value): bool
|
||||||
{
|
{
|
||||||
return $this->validateUniqueCurrency('code', (string)$attribute, (string)$value);
|
return $this->validateUniqueCurrency('code', (string)$attribute, (string)$value);
|
||||||
}
|
}
|
||||||
@ -658,12 +658,12 @@ class FireflyValidator extends Validator
|
|||||||
return 0 === \DB::table('transaction_currencies')->where($field, $value)->whereNull('deleted_at')->count();
|
return 0 === \DB::table('transaction_currencies')->where($field, $value)->whereNull('deleted_at')->count();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function validateUniqueCurrencyName(null|string $attribute, null|string $value): bool
|
public function validateUniqueCurrencyName(?string $attribute, ?string $value): bool
|
||||||
{
|
{
|
||||||
return $this->validateUniqueCurrency('name', (string)$attribute, (string)$value);
|
return $this->validateUniqueCurrency('name', (string)$attribute, (string)$value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function validateUniqueCurrencySymbol(null|string $attribute, null|string $value): bool
|
public function validateUniqueCurrencySymbol(?string $attribute, ?string $value): bool
|
||||||
{
|
{
|
||||||
return $this->validateUniqueCurrency('symbol', (string)$attribute, (string)$value);
|
return $this->validateUniqueCurrency('symbol', (string)$attribute, (string)$value);
|
||||||
}
|
}
|
||||||
|
180
composer.lock
generated
180
composer.lock
generated
@ -2014,16 +2014,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/framework",
|
"name": "laravel/framework",
|
||||||
"version": "v10.45.1",
|
"version": "v10.46.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/framework.git",
|
"url": "https://github.com/laravel/framework.git",
|
||||||
"reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd"
|
"reference": "5e95946a8283a8d5c015035793f9c61c297e937f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/framework/zipball/dcf5d1d722b84ad38a5e053289130b6962f830bd",
|
"url": "https://api.github.com/repos/laravel/framework/zipball/5e95946a8283a8d5c015035793f9c61c297e937f",
|
||||||
"reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd",
|
"reference": "5e95946a8283a8d5c015035793f9c61c297e937f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2216,7 +2216,7 @@
|
|||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2024-02-21T14:07:36+00:00"
|
"time": "2024-02-27T16:46:54+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/passport",
|
"name": "laravel/passport",
|
||||||
@ -2298,16 +2298,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/prompts",
|
"name": "laravel/prompts",
|
||||||
"version": "v0.1.15",
|
"version": "v0.1.16",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/prompts.git",
|
"url": "https://github.com/laravel/prompts.git",
|
||||||
"reference": "d814a27514d99b03c85aa42b22cfd946568636c1"
|
"reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/prompts/zipball/d814a27514d99b03c85aa42b22cfd946568636c1",
|
"url": "https://api.github.com/repos/laravel/prompts/zipball/ca6872ab6aec3ab61db3a61f83a6caf764ec7781",
|
||||||
"reference": "d814a27514d99b03c85aa42b22cfd946568636c1",
|
"reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2349,9 +2349,9 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/laravel/prompts/issues",
|
"issues": "https://github.com/laravel/prompts/issues",
|
||||||
"source": "https://github.com/laravel/prompts/tree/v0.1.15"
|
"source": "https://github.com/laravel/prompts/tree/v0.1.16"
|
||||||
},
|
},
|
||||||
"time": "2023-12-29T22:37:42+00:00"
|
"time": "2024-02-21T19:25:27+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/sanctum",
|
"name": "laravel/sanctum",
|
||||||
@ -4476,16 +4476,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpseclib/phpseclib",
|
"name": "phpseclib/phpseclib",
|
||||||
"version": "3.0.35",
|
"version": "3.0.36",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/phpseclib/phpseclib.git",
|
"url": "https://github.com/phpseclib/phpseclib.git",
|
||||||
"reference": "4b1827beabce71953ca479485c0ae9c51287f2fe"
|
"reference": "c2fb5136162d4be18fdd4da9980696f3aee96d7b"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/4b1827beabce71953ca479485c0ae9c51287f2fe",
|
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c2fb5136162d4be18fdd4da9980696f3aee96d7b",
|
||||||
"reference": "4b1827beabce71953ca479485c0ae9c51287f2fe",
|
"reference": "c2fb5136162d4be18fdd4da9980696f3aee96d7b",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -4566,7 +4566,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/phpseclib/phpseclib/issues",
|
"issues": "https://github.com/phpseclib/phpseclib/issues",
|
||||||
"source": "https://github.com/phpseclib/phpseclib/tree/3.0.35"
|
"source": "https://github.com/phpseclib/phpseclib/tree/3.0.36"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -4582,7 +4582,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-12-29T01:59:53+00:00"
|
"time": "2024-02-26T05:13:14+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pragmarx/google2fa",
|
"name": "pragmarx/google2fa",
|
||||||
@ -6028,16 +6028,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/console",
|
"name": "symfony/console",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/console.git",
|
"url": "https://github.com/symfony/console.git",
|
||||||
"reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e"
|
"reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
|
"url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
|
||||||
"reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
|
"reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6102,7 +6102,7 @@
|
|||||||
"terminal"
|
"terminal"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/console/tree/v6.4.3"
|
"source": "https://github.com/symfony/console/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6118,7 +6118,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-23T14:51:35+00:00"
|
"time": "2024-02-22T20:27:10+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/css-selector",
|
"name": "symfony/css-selector",
|
||||||
@ -6254,16 +6254,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/error-handler",
|
"name": "symfony/error-handler",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/error-handler.git",
|
"url": "https://github.com/symfony/error-handler.git",
|
||||||
"reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6"
|
"reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6",
|
"url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
|
||||||
"reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6",
|
"reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6309,7 +6309,7 @@
|
|||||||
"description": "Provides tools to manage errors and ease debugging PHP code",
|
"description": "Provides tools to manage errors and ease debugging PHP code",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/error-handler/tree/v6.4.3"
|
"source": "https://github.com/symfony/error-handler/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6325,7 +6325,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-29T15:40:36+00:00"
|
"time": "2024-02-22T20:27:10+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/event-dispatcher",
|
"name": "symfony/event-dispatcher",
|
||||||
@ -6549,16 +6549,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-client",
|
"name": "symfony/http-client",
|
||||||
"version": "v7.0.3",
|
"version": "v7.0.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-client.git",
|
"url": "https://github.com/symfony/http-client.git",
|
||||||
"reference": "3d2605c07cd14aec294f72f5bf8147702f7a5ada"
|
"reference": "8384876f49a2316a63f88a9cd12436de6936bee6"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-client/zipball/3d2605c07cd14aec294f72f5bf8147702f7a5ada",
|
"url": "https://api.github.com/repos/symfony/http-client/zipball/8384876f49a2316a63f88a9cd12436de6936bee6",
|
||||||
"reference": "3d2605c07cd14aec294f72f5bf8147702f7a5ada",
|
"reference": "8384876f49a2316a63f88a9cd12436de6936bee6",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6621,7 +6621,7 @@
|
|||||||
"http"
|
"http"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-client/tree/v7.0.3"
|
"source": "https://github.com/symfony/http-client/tree/v7.0.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6637,7 +6637,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-29T15:41:16+00:00"
|
"time": "2024-02-15T11:33:06+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-client-contracts",
|
"name": "symfony/http-client-contracts",
|
||||||
@ -6719,16 +6719,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-foundation",
|
"name": "symfony/http-foundation",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-foundation.git",
|
"url": "https://github.com/symfony/http-foundation.git",
|
||||||
"reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9"
|
"reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
|
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
|
||||||
"reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
|
"reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6776,7 +6776,7 @@
|
|||||||
"description": "Defines an object-oriented layer for the HTTP specification",
|
"description": "Defines an object-oriented layer for the HTTP specification",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-foundation/tree/v6.4.3"
|
"source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6792,20 +6792,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-23T14:51:35+00:00"
|
"time": "2024-02-08T15:01:18+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-kernel",
|
"name": "symfony/http-kernel",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-kernel.git",
|
"url": "https://github.com/symfony/http-kernel.git",
|
||||||
"reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2"
|
"reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2",
|
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
|
||||||
"reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2",
|
"reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6854,7 +6854,7 @@
|
|||||||
"symfony/process": "^5.4|^6.0|^7.0",
|
"symfony/process": "^5.4|^6.0|^7.0",
|
||||||
"symfony/property-access": "^5.4.5|^6.0.5|^7.0",
|
"symfony/property-access": "^5.4.5|^6.0.5|^7.0",
|
||||||
"symfony/routing": "^5.4|^6.0|^7.0",
|
"symfony/routing": "^5.4|^6.0|^7.0",
|
||||||
"symfony/serializer": "^6.3|^7.0",
|
"symfony/serializer": "^6.4.4|^7.0.4",
|
||||||
"symfony/stopwatch": "^5.4|^6.0|^7.0",
|
"symfony/stopwatch": "^5.4|^6.0|^7.0",
|
||||||
"symfony/translation": "^5.4|^6.0|^7.0",
|
"symfony/translation": "^5.4|^6.0|^7.0",
|
||||||
"symfony/translation-contracts": "^2.5|^3",
|
"symfony/translation-contracts": "^2.5|^3",
|
||||||
@ -6889,7 +6889,7 @@
|
|||||||
"description": "Provides a structured process for converting a Request into a Response",
|
"description": "Provides a structured process for converting a Request into a Response",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-kernel/tree/v6.4.3"
|
"source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6905,20 +6905,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-31T07:21:29+00:00"
|
"time": "2024-02-27T06:32:13+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/mailer",
|
"name": "symfony/mailer",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/mailer.git",
|
"url": "https://github.com/symfony/mailer.git",
|
||||||
"reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee"
|
"reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/mailer/zipball/74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
|
"url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
|
||||||
"reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
|
"reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6969,7 +6969,7 @@
|
|||||||
"description": "Helps sending emails",
|
"description": "Helps sending emails",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/mailer/tree/v6.4.3"
|
"source": "https://github.com/symfony/mailer/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6985,20 +6985,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-29T15:01:07+00:00"
|
"time": "2024-02-03T21:33:47+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/mailgun-mailer",
|
"name": "symfony/mailgun-mailer",
|
||||||
"version": "v7.0.3",
|
"version": "v7.0.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/mailgun-mailer.git",
|
"url": "https://github.com/symfony/mailgun-mailer.git",
|
||||||
"reference": "fa7d03eb374938cb1f7a04c17a11a0e969e38cb8"
|
"reference": "96df0d3815dc72367ecc38c4a82d8021f8bddd4e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/fa7d03eb374938cb1f7a04c17a11a0e969e38cb8",
|
"url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/96df0d3815dc72367ecc38c4a82d8021f8bddd4e",
|
||||||
"reference": "fa7d03eb374938cb1f7a04c17a11a0e969e38cb8",
|
"reference": "96df0d3815dc72367ecc38c4a82d8021f8bddd4e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -7038,7 +7038,7 @@
|
|||||||
"description": "Symfony Mailgun Mailer Bridge",
|
"description": "Symfony Mailgun Mailer Bridge",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/mailgun-mailer/tree/v7.0.3"
|
"source": "https://github.com/symfony/mailgun-mailer/tree/v7.0.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -7054,7 +7054,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-29T15:41:16+00:00"
|
"time": "2024-02-15T11:33:06+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/mime",
|
"name": "symfony/mime",
|
||||||
@ -7853,16 +7853,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/process",
|
"name": "symfony/process",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/process.git",
|
"url": "https://github.com/symfony/process.git",
|
||||||
"reference": "31642b0818bfcff85930344ef93193f8c607e0a3"
|
"reference": "710e27879e9be3395de2b98da3f52a946039f297"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3",
|
"url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
|
||||||
"reference": "31642b0818bfcff85930344ef93193f8c607e0a3",
|
"reference": "710e27879e9be3395de2b98da3f52a946039f297",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -7894,7 +7894,7 @@
|
|||||||
"description": "Executes commands in sub-processes",
|
"description": "Executes commands in sub-processes",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/process/tree/v6.4.3"
|
"source": "https://github.com/symfony/process/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -7910,7 +7910,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-23T14:51:35+00:00"
|
"time": "2024-02-20T12:31:00+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/psr-http-message-bridge",
|
"name": "symfony/psr-http-message-bridge",
|
||||||
@ -8168,16 +8168,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/string",
|
"name": "symfony/string",
|
||||||
"version": "v7.0.3",
|
"version": "v7.0.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/string.git",
|
"url": "https://github.com/symfony/string.git",
|
||||||
"reference": "524aac4a280b90a4420d8d6a040718d0586505ac"
|
"reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac",
|
"url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
|
||||||
"reference": "524aac4a280b90a4420d8d6a040718d0586505ac",
|
"reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -8234,7 +8234,7 @@
|
|||||||
"utf8"
|
"utf8"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/string/tree/v7.0.3"
|
"source": "https://github.com/symfony/string/tree/v7.0.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -8250,20 +8250,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-29T15:41:16+00:00"
|
"time": "2024-02-01T13:17:36+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation",
|
"name": "symfony/translation",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/translation.git",
|
"url": "https://github.com/symfony/translation.git",
|
||||||
"reference": "637c51191b6b184184bbf98937702bcf554f7d04"
|
"reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04",
|
"url": "https://api.github.com/repos/symfony/translation/zipball/bce6a5a78e94566641b2594d17e48b0da3184a8e",
|
||||||
"reference": "637c51191b6b184184bbf98937702bcf554f7d04",
|
"reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -8329,7 +8329,7 @@
|
|||||||
"description": "Provides tools to internationalize your application",
|
"description": "Provides tools to internationalize your application",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/translation/tree/v6.4.3"
|
"source": "https://github.com/symfony/translation/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -8345,7 +8345,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-29T13:11:52+00:00"
|
"time": "2024-02-20T13:16:58+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation-contracts",
|
"name": "symfony/translation-contracts",
|
||||||
@ -8501,16 +8501,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/var-dumper",
|
"name": "symfony/var-dumper",
|
||||||
"version": "v6.4.3",
|
"version": "v6.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/var-dumper.git",
|
"url": "https://github.com/symfony/var-dumper.git",
|
||||||
"reference": "0435a08f69125535336177c29d56af3abc1f69da"
|
"reference": "b439823f04c98b84d4366c79507e9da6230944b1"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da",
|
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
|
||||||
"reference": "0435a08f69125535336177c29d56af3abc1f69da",
|
"reference": "b439823f04c98b84d4366c79507e9da6230944b1",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -8566,7 +8566,7 @@
|
|||||||
"dump"
|
"dump"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/var-dumper/tree/v6.4.3"
|
"source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -8582,7 +8582,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-23T14:53:30+00:00"
|
"time": "2024-02-15T11:23:52+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "therobfonz/laravel-mandrill-driver",
|
"name": "therobfonz/laravel-mandrill-driver",
|
||||||
@ -9551,16 +9551,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "larastan/larastan",
|
"name": "larastan/larastan",
|
||||||
"version": "v2.9.0",
|
"version": "v2.9.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/larastan/larastan.git",
|
"url": "https://github.com/larastan/larastan.git",
|
||||||
"reference": "35fa9cbe1895e76215bbe74571a344f2705fbe01"
|
"reference": "467113c58d110ad617cf9e07ff49b0948d1c03cc"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/larastan/larastan/zipball/35fa9cbe1895e76215bbe74571a344f2705fbe01",
|
"url": "https://api.github.com/repos/larastan/larastan/zipball/467113c58d110ad617cf9e07ff49b0948d1c03cc",
|
||||||
"reference": "35fa9cbe1895e76215bbe74571a344f2705fbe01",
|
"reference": "467113c58d110ad617cf9e07ff49b0948d1c03cc",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -9628,7 +9628,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/larastan/larastan/issues",
|
"issues": "https://github.com/larastan/larastan/issues",
|
||||||
"source": "https://github.com/larastan/larastan/tree/v2.9.0"
|
"source": "https://github.com/larastan/larastan/tree/v2.9.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -9648,7 +9648,7 @@
|
|||||||
"type": "patreon"
|
"type": "patreon"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-02-13T11:49:22+00:00"
|
"time": "2024-02-26T14:10:20+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "maximebf/debugbar",
|
"name": "maximebf/debugbar",
|
||||||
|
14
package-lock.json
generated
14
package-lock.json
generated
@ -61,9 +61,9 @@
|
|||||||
"integrity": "sha512-Q44beV3vD1jydB0smro9+nJY9g60uSjQ+cM8cHEIS9gDCG/37WiabdtQybJceeIHbne51MJPtOAa89y/TfnbQg=="
|
"integrity": "sha512-Q44beV3vD1jydB0smro9+nJY9g60uSjQ+cM8cHEIS9gDCG/37WiabdtQybJceeIHbne51MJPtOAa89y/TfnbQg=="
|
||||||
},
|
},
|
||||||
"node_modules/@babel/runtime": {
|
"node_modules/@babel/runtime": {
|
||||||
"version": "7.23.9",
|
"version": "7.24.0",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz",
|
||||||
"integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==",
|
"integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"regenerator-runtime": "^0.14.0"
|
"regenerator-runtime": "^0.14.0"
|
||||||
},
|
},
|
||||||
@ -547,14 +547,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/chart.js": {
|
"node_modules/chart.js": {
|
||||||
"version": "4.4.1",
|
"version": "4.4.2",
|
||||||
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.1.tgz",
|
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.2.tgz",
|
||||||
"integrity": "sha512-C74QN1bxwV1v2PEujhmKjOZ7iUM4w6BWs23Md/6aOZZSlwMzeCIDGuZay++rBgChYru7/+QFeoQW0fQoP534Dg==",
|
"integrity": "sha512-6GD7iKwFpP5kbSD4MeRRRlTnQvxfQREy36uEtm1hzHzcOqwWx0YEHuspuoNlslu+nciLIB7fjjsHkUv/FzFcOg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kurkle/color": "^0.3.0"
|
"@kurkle/color": "^0.3.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"pnpm": ">=7"
|
"pnpm": ">=8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/chartjs-adapter-date-fns": {
|
"node_modules/chartjs-adapter-date-fns": {
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
import{f as n}from"./vendor-29d868f9.js";function e(){return{id:"",name:"",alpine_name:""}}function o(){return{description:[],amount:[],currency_code:[],foreign_amount:[],foreign_currency_code:[],source_account:[],destination_account:[],budget_id:[],category_name:[],piggy_bank_id:[],bill_id:[],tags:[],notes:[],internal_reference:[],external_url:[],latitude:[],longitude:[],zoom_level:[],date:[],interest_date:[],book_date:[],process_date:[],due_date:[],payment_date:[],invoice_date:[]}}function d(){let t=n(new Date,"yyyy-MM-dd HH:mm");return{description:"",amount:"",currency_code:"EUR",foreign_amount:"",foreign_currency_code:"",source_account:e(),destination_account:e(),budget_id:null,category_name:"",piggy_bank_id:null,bill_id:null,tags:[],notes:"",internal_reference:"",external_url:"",hasLocation:!1,latitude:null,longitude:null,zoomLevel:null,date:t,interest_date:"",book_date:"",process_date:"",due_date:"",payment_date:"",invoice_date:"",errors:o()}}export{d as c,o as d};
|
import{f as n}from"./vendor-50e42c6c.js";function e(){return{id:"",name:"",alpine_name:""}}function o(){return{description:[],amount:[],currency_code:[],foreign_amount:[],foreign_currency_code:[],source_account:[],destination_account:[],budget_id:[],category_name:[],piggy_bank_id:[],bill_id:[],tags:[],notes:[],internal_reference:[],external_url:[],latitude:[],longitude:[],zoom_level:[],date:[],interest_date:[],book_date:[],process_date:[],due_date:[],payment_date:[],invoice_date:[]}}function d(){let t=n(new Date,"yyyy-MM-dd HH:mm");return{description:"",amount:"",currency_code:"EUR",foreign_amount:"",foreign_currency_code:"",source_account:e(),destination_account:e(),budget_id:null,category_name:"",piggy_bank_id:null,bill_id:null,tags:[],notes:"",internal_reference:"",external_url:"",hasLocation:!1,latitude:null,longitude:null,zoomLevel:null,date:t,interest_date:"",book_date:"",process_date:"",due_date:"",payment_date:"",invoice_date:"",errors:o()}}export{d as c,o as d};
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
import{a as s}from"./format-money-0eadc9a5.js";let t=class{list(a){return s.get("/api/v2/subscriptions",{params:a})}paid(a){return s.get("/api/v2/subscriptions/sum/paid",{params:a})}unpaid(a){return s.get("/api/v2/subscriptions/sum/unpaid",{params:a})}};class e{list(a){return s.get("/api/v2/piggy-banks",{params:a})}}export{t as G,e as a};
|
import{a as s}from"./format-money-2e5851ad.js";let t=class{list(a){return s.get("/api/v2/subscriptions",{params:a})}paid(a){return s.get("/api/v2/subscriptions/sum/paid",{params:a})}unpaid(a){return s.get("/api/v2/subscriptions/sum/unpaid",{params:a})}};class e{list(a){return s.get("/api/v2/piggy-banks",{params:a})}}export{t as G,e as a};
|
@ -1 +1 @@
|
|||||||
import{a as t}from"./format-money-0eadc9a5.js";class n{list(a){return t.get("/api/v2/transactions",{params:a})}infiniteList(a){return t.get("/api/v2/infinite/transactions",{params:a})}show(a,i){return t.get("/api/v2/transactions/"+a,{params:i})}}export{n as G};
|
import{a as t}from"./format-money-2e5851ad.js";class n{list(a){return t.get("/api/v2/transactions",{params:a})}infiniteList(a){return t.get("/api/v2/infinite/transactions",{params:a})}show(a,i){return t.get("/api/v2/transactions/"+a,{params:i})}}export{n as G};
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
import{c as o}from"./create-empty-split-224dd5cc.js";import{f as _}from"./vendor-29d868f9.js";function l(a,r){let n=[];for(let i in a)if(a.hasOwnProperty(i)){let e=a[i],t=o();t.transaction_journal_id=e.transaction_journal_id,t.transaction_group_id=r,t.bill_id=e.bill_id,t.bill_name=e.bill_name,t.budget_id=e.budget_id,t.budget_name=e.budget_name,t.category_name=e.category_name,t.category_id=e.category_id,t.piggy_bank_id=e.piggy_bank_id,t.piggy_bank_name=e.piggy_bank_name,t.book_date=e.book_date,t.due_date=e.due_date,t.interest_date=e.interest_date,t.invoice_date=e.invoice_date,t.payment_date=e.payment_date,t.process_date=e.process_date,t.external_url=e.external_url,t.internal_reference=e.internal_reference,t.notes=e.notes,t.tags=e.tags,t.amount=parseFloat(e.amount).toFixed(e.currency_decimal_places),t.currency_code=e.currency_code,e.foreign_amount!==null&&(t.forein_currency_code=e.foreign_currency_code,t.foreign_amount=parseFloat(e.foreign_amount).toFixed(e.foreign_currency_decimal_places)),t.date=_(new Date(e.date),"yyyy-MM-dd HH:mm"),t.description=e.description,t.destination_account={id:e.destination_id,name:e.destination_name,type:e.destination_type,alpine_name:e.destination_name},t.source_account={id:e.source_id,name:e.source_name,type:e.source_type,alpine_name:e.source_name},e.latitude!==null&&(t.hasLocation=!0,t.latitude=e.latitude,t.longitude=e.longitude,t.zoomLevel=e.zoom_level),n.push(t)}return n}export{l as p};
|
import{c as o}from"./create-empty-split-81f71b2e.js";import{f as _}from"./vendor-50e42c6c.js";function l(a,r){let n=[];for(let i in a)if(a.hasOwnProperty(i)){let e=a[i],t=o();t.transaction_journal_id=e.transaction_journal_id,t.transaction_group_id=r,t.bill_id=e.bill_id,t.bill_name=e.bill_name,t.budget_id=e.budget_id,t.budget_name=e.budget_name,t.category_name=e.category_name,t.category_id=e.category_id,t.piggy_bank_id=e.piggy_bank_id,t.piggy_bank_name=e.piggy_bank_name,t.book_date=e.book_date,t.due_date=e.due_date,t.interest_date=e.interest_date,t.invoice_date=e.invoice_date,t.payment_date=e.payment_date,t.process_date=e.process_date,t.external_url=e.external_url,t.internal_reference=e.internal_reference,t.notes=e.notes,t.tags=e.tags,t.amount=parseFloat(e.amount).toFixed(e.currency_decimal_places),t.currency_code=e.currency_code,e.foreign_amount!==null&&(t.forein_currency_code=e.foreign_currency_code,t.foreign_amount=parseFloat(e.foreign_amount).toFixed(e.foreign_currency_decimal_places)),t.date=_(new Date(e.date),"yyyy-MM-dd HH:mm"),t.description=e.description,t.destination_account={id:e.destination_id,name:e.destination_name,type:e.destination_type,alpine_name:e.destination_name},t.source_account={id:e.source_id,name:e.source_name,type:e.source_type,alpine_name:e.source_name},e.latitude!==null&&(t.hasLocation=!0,t.latitude=e.latitude,t.longitude=e.longitude,t.zoomLevel=e.zoom_level),n.push(t)}return n}export{l as p};
|
@ -1 +1 @@
|
|||||||
import{a as p}from"./format-money-0eadc9a5.js";class u{put(t,a){let r="/api/v2/transactions/"+parseInt(a.id);return p.put(r,t)}}export{u as P};
|
import{a as p}from"./format-money-2e5851ad.js";class u{put(t,a){let r="/api/v2/transactions/"+parseInt(a.id);return p.put(r,t)}}export{u as P};
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,57 +1,57 @@
|
|||||||
{
|
{
|
||||||
"_create-empty-split-224dd5cc.js": {
|
"_create-empty-split-81f71b2e.js": {
|
||||||
"file": "assets/create-empty-split-224dd5cc.js",
|
"file": "assets/create-empty-split-81f71b2e.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_vendor-29d868f9.js"
|
"_vendor-50e42c6c.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-Fe4EFJyqGnKJtlPnsEmK9bgqfm3ME+peYLok4zFWW2E8Jw/DFrfWPutOuy51zo7k"
|
"integrity": "sha384-iCRJ+fmYZVSXY4L5+Q8vhQKqcjSi6lnglG7yW8deRAjJwiVaANm0EzriQPOAgQMS"
|
||||||
},
|
},
|
||||||
"_format-money-0eadc9a5.js": {
|
"_format-money-2e5851ad.js": {
|
||||||
"file": "assets/format-money-0eadc9a5.js",
|
"file": "assets/format-money-2e5851ad.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_vendor-29d868f9.js"
|
"_vendor-50e42c6c.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-V+tvR2m7nSG2M4f1nCws0Vblszq/fUzQP/4WHGwxTjPiT4Bx7Yp5joFuQqHtvCZc"
|
"integrity": "sha384-kzF0fVkQWinHDsR1R190XjenILJ0VYvD2H1rQJW23dJvcA18qRrGRyb9q+3RADZU"
|
||||||
},
|
},
|
||||||
"_get-e91a7549.js": {
|
"_get-28b9aa25.js": {
|
||||||
"file": "assets/get-e91a7549.js",
|
"file": "assets/get-28b9aa25.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js"
|
"_format-money-2e5851ad.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-taM3BY7w0UYLnnDkW+yUjJ0mjVGevf/nQX0aF1QLp/29bjEoZG9FIwIQmiob+dV/"
|
"integrity": "sha384-pKOfaG0JCi2+ROk2Tt8poQvr+uMK7u4BUCUKRcvEU/bREr4YReZnqSNBWtvdP3dW"
|
||||||
},
|
},
|
||||||
"_get-eb14a1e7.js": {
|
"_get-e0a81c64.js": {
|
||||||
"file": "assets/get-eb14a1e7.js",
|
"file": "assets/get-e0a81c64.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js"
|
"_format-money-2e5851ad.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-oOTTX2GJ9favH5eEgKdLByQFPLOL+uEV8YuDB0G2Fr+VkTXWvAm+wTPPNRoeSBna"
|
"integrity": "sha384-3OBZFmOXNyobpHvnLUfs5EdHG9fjwBAhQRszBlMtAO55MsE+OrB0/xnuNfMN+R7N"
|
||||||
},
|
},
|
||||||
"_parse-downloaded-splits-c84e4e72.js": {
|
"_parse-downloaded-splits-83822d1b.js": {
|
||||||
"file": "assets/parse-downloaded-splits-c84e4e72.js",
|
"file": "assets/parse-downloaded-splits-83822d1b.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_create-empty-split-224dd5cc.js",
|
"_create-empty-split-81f71b2e.js",
|
||||||
"_vendor-29d868f9.js"
|
"_vendor-50e42c6c.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-GyxMGgAOGUGeGS8GopF2E91A4aYAxkCOrEUGzaTmo7TR7DexiJaMU1hBtEKW0Zrg"
|
"integrity": "sha384-dPB0/W3hHYE/2m/HPqibSEe2N2XD7wMTePDsRd6fv03fKwgFu6mwOjUx1t3q6Gn6"
|
||||||
},
|
},
|
||||||
"_put-79877c04.js": {
|
"_put-bb9ad93a.js": {
|
||||||
"file": "assets/put-79877c04.js",
|
"file": "assets/put-bb9ad93a.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js"
|
"_format-money-2e5851ad.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-nSv+7TrBp3yUaWf50t2s5NVoNKUbc0K5BXhYuEtemv1hmKdmdfg2XTAxlCwsER5h"
|
"integrity": "sha384-jk8bB684G+XotWRFO6k57GF1QGy6BUgFBb55JPsvU3clT6DBNA42ELW8vPyX9HbB"
|
||||||
},
|
},
|
||||||
"_splice-errors-into-transactions-cff36293.js": {
|
"_splice-errors-into-transactions-6727b386.js": {
|
||||||
"file": "assets/splice-errors-into-transactions-cff36293.js",
|
"file": "assets/splice-errors-into-transactions-6727b386.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js",
|
"_format-money-2e5851ad.js",
|
||||||
"_get-eb14a1e7.js",
|
"_get-28b9aa25.js",
|
||||||
"_vendor-29d868f9.js"
|
"_vendor-50e42c6c.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-O1jAp6eMTgnWh9y/37DmSdkXmSPqn+yuOI9GNkKst2LXoQdNuSXXsUYdlY/XQ++B"
|
"integrity": "sha384-x5WY5RRt7J6TLl+7nLZi1TBBKgUmjNokUh2ezaofCTQp0sEkHQrmJYAGUX/ZwPY4"
|
||||||
},
|
},
|
||||||
"_vendor-29d868f9.js": {
|
"_vendor-50e42c6c.js": {
|
||||||
"assets": [
|
"assets": [
|
||||||
"assets/layers-1dbbe9d0.png",
|
"assets/layers-1dbbe9d0.png",
|
||||||
"assets/layers-2x-066daca8.png",
|
"assets/layers-2x-066daca8.png",
|
||||||
@ -60,8 +60,8 @@
|
|||||||
"css": [
|
"css": [
|
||||||
"assets/vendor-6fbf50c2.css"
|
"assets/vendor-6fbf50c2.css"
|
||||||
],
|
],
|
||||||
"file": "assets/vendor-29d868f9.js",
|
"file": "assets/vendor-50e42c6c.js",
|
||||||
"integrity": "sha384-b6NeUOA/F71YH766Rxtqtj4DCc+ZvbSVfDKd7vnZR9LilLr3wu/7SaEQn6wnqZ2f"
|
"integrity": "sha384-dsSpdnRISp7bIdL3fpyygvNfUizujkwhA11RPZehiEUvEt52ESLYt+Hlp3c9/iZp"
|
||||||
},
|
},
|
||||||
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
|
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
|
||||||
"file": "assets/fa-brands-400-5656d596.ttf",
|
"file": "assets/fa-brands-400-5656d596.ttf",
|
||||||
@ -109,45 +109,45 @@
|
|||||||
"integrity": "sha384-wg83fCOXjBtqzFAWhTL9Sd9vmLUNhfEEzfmNUX9zwv2igKlz/YQbdapF4ObdxF+R"
|
"integrity": "sha384-wg83fCOXjBtqzFAWhTL9Sd9vmLUNhfEEzfmNUX9zwv2igKlz/YQbdapF4ObdxF+R"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/dashboard/dashboard.js": {
|
"resources/assets/v2/pages/dashboard/dashboard.js": {
|
||||||
"file": "assets/dashboard-79f411ba.js",
|
"file": "assets/dashboard-5f195194.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js",
|
"_format-money-2e5851ad.js",
|
||||||
"_vendor-29d868f9.js",
|
"_vendor-50e42c6c.js",
|
||||||
"_get-e91a7549.js",
|
"_get-e0a81c64.js",
|
||||||
"_get-eb14a1e7.js"
|
"_get-28b9aa25.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/dashboard/dashboard.js",
|
"src": "resources/assets/v2/pages/dashboard/dashboard.js",
|
||||||
"integrity": "sha384-GwYZ6LoKmasmU8xSqpuaHMVc7pD9gcb0k3eoeHhfdYh2ZLbPqfAV0aFKMSUfDb/T"
|
"integrity": "sha384-/MzTdILeI9XL/Q9uFEP734/m9XlPpRFcLFQxe8i+di4fuU218Q4W+NSG3DGcKQ11"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/create.js": {
|
"resources/assets/v2/pages/transactions/create.js": {
|
||||||
"file": "assets/create-865d3a86.js",
|
"file": "assets/create-5a4939e8.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js",
|
"_format-money-2e5851ad.js",
|
||||||
"_create-empty-split-224dd5cc.js",
|
"_create-empty-split-81f71b2e.js",
|
||||||
"_splice-errors-into-transactions-cff36293.js",
|
"_splice-errors-into-transactions-6727b386.js",
|
||||||
"_vendor-29d868f9.js",
|
"_vendor-50e42c6c.js",
|
||||||
"_get-eb14a1e7.js"
|
"_get-28b9aa25.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/create.js",
|
"src": "resources/assets/v2/pages/transactions/create.js",
|
||||||
"integrity": "sha384-oZDLG4pTlcJE3tQVXKsnfuCVGg8b4NwbrJWN969rtIymjNU8EyvS3ZavT5dOsq/n"
|
"integrity": "sha384-o9vKV/iUV+9XIsX8rG9jk8bMPSxuV827U7ScOca2b6I6f/lyJBUDmzoMqMIfaqce"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/edit.js": {
|
"resources/assets/v2/pages/transactions/edit.js": {
|
||||||
"file": "assets/edit-5b2f31e3.js",
|
"file": "assets/edit-4c7ba005.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js",
|
"_format-money-2e5851ad.js",
|
||||||
"_get-e91a7549.js",
|
"_get-e0a81c64.js",
|
||||||
"_parse-downloaded-splits-c84e4e72.js",
|
"_parse-downloaded-splits-83822d1b.js",
|
||||||
"_splice-errors-into-transactions-cff36293.js",
|
"_splice-errors-into-transactions-6727b386.js",
|
||||||
"_vendor-29d868f9.js",
|
"_vendor-50e42c6c.js",
|
||||||
"_create-empty-split-224dd5cc.js",
|
"_create-empty-split-81f71b2e.js",
|
||||||
"_put-79877c04.js",
|
"_put-bb9ad93a.js",
|
||||||
"_get-eb14a1e7.js"
|
"_get-28b9aa25.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/edit.js",
|
"src": "resources/assets/v2/pages/transactions/edit.js",
|
||||||
"integrity": "sha384-0cKgNr169FUfm4fZWDchcbD4iUvaJvudytdMpwy2XcV89r8OS1kDIiiTdDr8rnuo"
|
"integrity": "sha384-MOmzHUGTHwnuic0yw3wUp8MJO+Y9iLdXGy+V5iWtiZLpG2ts8z8R8Ms9Gp9L7Rc0"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/index.css": {
|
"resources/assets/v2/pages/transactions/index.css": {
|
||||||
"file": "assets/index-badb0a41.css",
|
"file": "assets/index-badb0a41.css",
|
||||||
@ -158,16 +158,16 @@
|
|||||||
"css": [
|
"css": [
|
||||||
"assets/index-badb0a41.css"
|
"assets/index-badb0a41.css"
|
||||||
],
|
],
|
||||||
"file": "assets/index-914edd04.js",
|
"file": "assets/index-90222973.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js",
|
"_format-money-2e5851ad.js",
|
||||||
"_vendor-29d868f9.js",
|
"_vendor-50e42c6c.js",
|
||||||
"_put-79877c04.js",
|
"_put-bb9ad93a.js",
|
||||||
"_get-e91a7549.js"
|
"_get-e0a81c64.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/index.js",
|
"src": "resources/assets/v2/pages/transactions/index.js",
|
||||||
"integrity": "sha384-I1nmsMl3NamObjMGO9FejfgfHD9YH4MTbwyemaQMk6s87pWgY5Y5PeWtTLmnAubR"
|
"integrity": "sha384-Sl6bKzSJxtyjnJoamDiBSZwdCi+AA8ZV/s40dXKFznm6RfYLiBLSS2qmQMlrVPZT"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/show.css": {
|
"resources/assets/v2/pages/transactions/show.css": {
|
||||||
"file": "assets/show-8b1429e5.css",
|
"file": "assets/show-8b1429e5.css",
|
||||||
@ -178,17 +178,17 @@
|
|||||||
"css": [
|
"css": [
|
||||||
"assets/show-8b1429e5.css"
|
"assets/show-8b1429e5.css"
|
||||||
],
|
],
|
||||||
"file": "assets/show-9c7036f1.js",
|
"file": "assets/show-3ef1a32a.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-0eadc9a5.js",
|
"_format-money-2e5851ad.js",
|
||||||
"_vendor-29d868f9.js",
|
"_vendor-50e42c6c.js",
|
||||||
"_get-e91a7549.js",
|
"_get-e0a81c64.js",
|
||||||
"_parse-downloaded-splits-c84e4e72.js",
|
"_parse-downloaded-splits-83822d1b.js",
|
||||||
"_create-empty-split-224dd5cc.js"
|
"_create-empty-split-81f71b2e.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/show.js",
|
"src": "resources/assets/v2/pages/transactions/show.js",
|
||||||
"integrity": "sha384-2XV3HPlPXYyJzcBmOQ3rTFIRpCxSeFpkdpGCCZyAShCgQO2JgR5wZpbo5qdLoyti"
|
"integrity": "sha384-SbD7zS5YgCmKGz4yqp3mEIvEye39FouSpd2+WCld8l7Wij23HCUdfGgF/cD+b21y"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/sass/app.scss": {
|
"resources/assets/v2/sass/app.scss": {
|
||||||
"file": "assets/app-fb7b26ec.css",
|
"file": "assets/app-fb7b26ec.css",
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Тази транзакция вече е теглене',
|
'convert_is_already_type_Withdrawal' => 'Тази транзакция вече е теглене',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Opcions de tramesa',
|
'submission_options' => 'Opcions de tramesa',
|
||||||
'apply_rules_checkbox' => 'Aplicar regles',
|
'apply_rules_checkbox' => 'Aplicar regles',
|
||||||
'fire_webhooks_checkbox' => 'Disparar webhooks',
|
'fire_webhooks_checkbox' => 'Disparar webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Aquesta transacció ja és una retirada',
|
'convert_is_already_type_Withdrawal' => 'Aquesta transacció ja és una retirada',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Tato transakce už je výběrem',
|
'convert_is_already_type_Withdrawal' => 'Tato transakce už je výběrem',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Denne transaktion er allerede en udbetaling',
|
'convert_is_already_type_Withdrawal' => 'Denne transaktion er allerede en udbetaling',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Übermittlungsoptionen',
|
'submission_options' => 'Übermittlungsoptionen',
|
||||||
'apply_rules_checkbox' => 'Regeln anwenden',
|
'apply_rules_checkbox' => 'Regeln anwenden',
|
||||||
'fire_webhooks_checkbox' => 'Webhooks abfeuern',
|
'fire_webhooks_checkbox' => 'Webhooks abfeuern',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Diese Buchung ist bereits eine Ausgabe',
|
'convert_is_already_type_Withdrawal' => 'Diese Buchung ist bereits eine Ausgabe',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Ενεργοποίηση των webhook',
|
'fire_webhooks_checkbox' => 'Ενεργοποίηση των webhook',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Αυτή η συναλλαγή είναι ήδη μία ανάληψη',
|
'convert_is_already_type_Withdrawal' => 'Αυτή η συναλλαγή είναι ήδη μία ανάληψη',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
||||||
|
@ -1541,8 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
'select_source_account' => 'Please select or type a valid source account name',
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
'select_dest_account' => 'Please select or type a valid destination account name',
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Opciones de envío',
|
'submission_options' => 'Opciones de envío',
|
||||||
'apply_rules_checkbox' => 'Aplicar reglas',
|
'apply_rules_checkbox' => 'Aplicar reglas',
|
||||||
'fire_webhooks_checkbox' => 'Disparar webhooks',
|
'fire_webhooks_checkbox' => 'Disparar webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Esta transferencia ya es un gasto',
|
'convert_is_already_type_Withdrawal' => 'Esta transferencia ya es un gasto',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Tämä tapahtuma on jo nosto',
|
'convert_is_already_type_Withdrawal' => 'Tämä tapahtuma on jo nosto',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Options de soumission',
|
'submission_options' => 'Options de soumission',
|
||||||
'apply_rules_checkbox' => 'Appliquer les règles',
|
'apply_rules_checkbox' => 'Appliquer les règles',
|
||||||
'fire_webhooks_checkbox' => 'Lancer les webhooks',
|
'fire_webhooks_checkbox' => 'Lancer les webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Cette opération est déjà une dépense',
|
'convert_is_already_type_Withdrawal' => 'Cette opération est déjà une dépense',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Ez a tranzakció már egy költség',
|
'convert_is_already_type_Withdrawal' => 'Ez a tranzakció már egy költség',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Transaksi ini sudah menjadi penarikan',
|
'convert_is_already_type_Withdrawal' => 'Transaksi ini sudah menjadi penarikan',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Opzioni di invio',
|
'submission_options' => 'Opzioni di invio',
|
||||||
'apply_rules_checkbox' => 'Applica le regole',
|
'apply_rules_checkbox' => 'Applica le regole',
|
||||||
'fire_webhooks_checkbox' => 'Esegui webhook',
|
'fire_webhooks_checkbox' => 'Esegui webhook',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Questa transazione è già un\'uscita',
|
'convert_is_already_type_Withdrawal' => 'Questa transazione è già un\'uscita',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => '送信オプション',
|
'submission_options' => '送信オプション',
|
||||||
'apply_rules_checkbox' => 'ルールを適用',
|
'apply_rules_checkbox' => 'ルールを適用',
|
||||||
'fire_webhooks_checkbox' => 'Webhookを実行',
|
'fire_webhooks_checkbox' => 'Webhookを実行',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'この取引はすでに出金です',
|
'convert_is_already_type_Withdrawal' => 'この取引はすでに出金です',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => '제출 옵션',
|
'submission_options' => '제출 옵션',
|
||||||
'apply_rules_checkbox' => '규칙 적용',
|
'apply_rules_checkbox' => '규칙 적용',
|
||||||
'fire_webhooks_checkbox' => '웹훅 실행',
|
'fire_webhooks_checkbox' => '웹훅 실행',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => '이 거래는 이미 출금되었습니다',
|
'convert_is_already_type_Withdrawal' => '이 거래는 이미 출금되었습니다',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Alternativer for innsending',
|
'submission_options' => 'Alternativer for innsending',
|
||||||
'apply_rules_checkbox' => 'Bruk regler',
|
'apply_rules_checkbox' => 'Bruk regler',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allerede et uttak',
|
'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allerede et uttak',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Inzending opties',
|
'submission_options' => 'Inzending opties',
|
||||||
'apply_rules_checkbox' => 'Regels toepassen',
|
'apply_rules_checkbox' => 'Regels toepassen',
|
||||||
'fire_webhooks_checkbox' => 'Webhooks starten',
|
'fire_webhooks_checkbox' => 'Webhooks starten',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Deze transactie is al een uitgave',
|
'convert_is_already_type_Withdrawal' => 'Deze transactie is al een uitgave',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Alternativer for innsending',
|
'submission_options' => 'Alternativer for innsending',
|
||||||
'apply_rules_checkbox' => 'Bruk reglar',
|
'apply_rules_checkbox' => 'Bruk reglar',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allereie eit uttak',
|
'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allereie eit uttak',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Opcje zapisu',
|
'submission_options' => 'Opcje zapisu',
|
||||||
'apply_rules_checkbox' => 'Zastosuj reguły',
|
'apply_rules_checkbox' => 'Zastosuj reguły',
|
||||||
'fire_webhooks_checkbox' => 'Uruchom webhooki',
|
'fire_webhooks_checkbox' => 'Uruchom webhooki',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Ta transakcja jest już wypłatą',
|
'convert_is_already_type_Withdrawal' => 'Ta transakcja jest już wypłatą',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Opções de envio',
|
'submission_options' => 'Opções de envio',
|
||||||
'apply_rules_checkbox' => 'Aplicar regras',
|
'apply_rules_checkbox' => 'Aplicar regras',
|
||||||
'fire_webhooks_checkbox' => 'Acionar webhooks',
|
'fire_webhooks_checkbox' => 'Acionar webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Esta transação já é uma saída',
|
'convert_is_already_type_Withdrawal' => 'Esta transação já é uma saída',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Opções de submissão',
|
'submission_options' => 'Opções de submissão',
|
||||||
'apply_rules_checkbox' => 'Aplicar regras',
|
'apply_rules_checkbox' => 'Aplicar regras',
|
||||||
'fire_webhooks_checkbox' => 'Ativar webhooks',
|
'fire_webhooks_checkbox' => 'Ativar webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Esta transação já e um levantamento',
|
'convert_is_already_type_Withdrawal' => 'Esta transação já e um levantamento',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Această tranzacție este deja o retragere',
|
'convert_is_already_type_Withdrawal' => 'Această tranzacție este deja o retragere',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Опции отправки',
|
'submission_options' => 'Опции отправки',
|
||||||
'apply_rules_checkbox' => 'Применить правила',
|
'apply_rules_checkbox' => 'Применить правила',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Эта транзакция уже является расходом',
|
'convert_is_already_type_Withdrawal' => 'Эта транзакция уже является расходом',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Tato transakcia už je výber',
|
'convert_is_already_type_Withdrawal' => 'Tato transakcia už je výber',
|
||||||
|
@ -1526,7 +1526,7 @@ return [
|
|||||||
'delete_attachment' => 'Izbriši prilogo ":name"',
|
'delete_attachment' => 'Izbriši prilogo ":name"',
|
||||||
'attachment_deleted' => 'Priloga ":name" izbrisana',
|
'attachment_deleted' => 'Priloga ":name" izbrisana',
|
||||||
'liabilities_deleted' => 'Izbrisana odgovornost ":name"',
|
'liabilities_deleted' => 'Izbrisana odgovornost ":name"',
|
||||||
'attachment_updated' => 'Priloga ":name" je posodobljenaj',
|
'attachment_updated' => 'Priloga ":name" je posodobljena',
|
||||||
'upload_max_file_size' => 'Največja velikost datoteke: :size',
|
'upload_max_file_size' => 'Največja velikost datoteke: :size',
|
||||||
'list_all_attachments' => 'Seznam vseh prilog',
|
'list_all_attachments' => 'Seznam vseh prilog',
|
||||||
|
|
||||||
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Možnosti oddaje',
|
'submission_options' => 'Možnosti oddaje',
|
||||||
'apply_rules_checkbox' => 'Uporabite pravila',
|
'apply_rules_checkbox' => 'Uporabite pravila',
|
||||||
'fire_webhooks_checkbox' => 'Sprožite Webhooke',
|
'fire_webhooks_checkbox' => 'Sprožite Webhooke',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Ta transakcija je že odliv',
|
'convert_is_already_type_Withdrawal' => 'Ta transakcija je že odliv',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Transaktionen är redan ett uttag',
|
'convert_is_already_type_Withdrawal' => 'Transaktionen är redan ett uttag',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
||||||
|
@ -1542,6 +1542,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Bu işlem zaten bir para çekme işlemidir',
|
'convert_is_already_type_Withdrawal' => 'Bu işlem zaten bir para çekme işlemidir',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Застосувати правила',
|
'apply_rules_checkbox' => 'Застосувати правила',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Ця транзакція вже є витратою',
|
'convert_is_already_type_Withdrawal' => 'Ця транзакція вже є витратою',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => 'Giao dịch này đã được rút tiền',
|
'convert_is_already_type_Withdrawal' => 'Giao dịch này đã được rút tiền',
|
||||||
|
@ -1542,6 +1542,8 @@ return [
|
|||||||
'submission_options' => '提交选项',
|
'submission_options' => '提交选项',
|
||||||
'apply_rules_checkbox' => '应用规则',
|
'apply_rules_checkbox' => '应用规则',
|
||||||
'fire_webhooks_checkbox' => '触发 webhook',
|
'fire_webhooks_checkbox' => '触发 webhook',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => '此交易已经为支出',
|
'convert_is_already_type_Withdrawal' => '此交易已经为支出',
|
||||||
|
@ -1541,6 +1541,8 @@ return [
|
|||||||
'submission_options' => 'Submission options',
|
'submission_options' => 'Submission options',
|
||||||
'apply_rules_checkbox' => 'Apply rules',
|
'apply_rules_checkbox' => 'Apply rules',
|
||||||
'fire_webhooks_checkbox' => 'Fire webhooks',
|
'fire_webhooks_checkbox' => 'Fire webhooks',
|
||||||
|
'select_source_account' => 'Please select or type a valid source account name',
|
||||||
|
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||||
|
|
||||||
// convert stuff:
|
// convert stuff:
|
||||||
'convert_is_already_type_Withdrawal' => '此交易已是一筆提款',
|
'convert_is_already_type_Withdrawal' => '此交易已是一筆提款',
|
||||||
|
Loading…
Reference in New Issue
Block a user