Merge branch 'develop' of github.com:firefly-iii/firefly-iii into develop

This commit is contained in:
James Cole 2024-02-29 06:27:24 +01:00
commit d7fa8b283e
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
53 changed files with 259 additions and 195 deletions

View File

@ -51,7 +51,7 @@ class NetWorth implements NetWorthInterface
private CurrencyRepositoryInterface $currencyRepos;
private User $user;
private null|UserGroup $userGroup;
private ?UserGroup $userGroup;
/**
* This method collects the user's net worth in ALL the user's currencies

View File

@ -39,7 +39,7 @@ class RemoteUserGuard implements Guard
{
protected Application $application;
protected UserProvider $provider;
protected null|User $user;
protected ?User $user;
/**
* Create a new authentication guard.

View File

@ -41,7 +41,7 @@ class RemoteUserProvider implements UserProvider
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function retrieveByCredentials(array $credentials): null|Authenticatable
public function retrieveByCredentials(array $credentials): ?Authenticatable
{
app('log')->debug(sprintf('Now at %s', __METHOD__));
@ -88,7 +88,7 @@ class RemoteUserProvider implements UserProvider
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function retrieveByToken($identifier, $token): null|Authenticatable
public function retrieveByToken($identifier, $token): ?Authenticatable
{
app('log')->debug(sprintf('Now at %s', __METHOD__));

View File

@ -645,7 +645,7 @@ class FireflyValidator extends Validator
/**
* @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);
}
@ -658,12 +658,12 @@ class FireflyValidator extends Validator
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);
}
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);
}

180
composer.lock generated
View File

@ -2014,16 +2014,16 @@
},
{
"name": "laravel/framework",
"version": "v10.45.1",
"version": "v10.46.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd"
"reference": "5e95946a8283a8d5c015035793f9c61c297e937f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/dcf5d1d722b84ad38a5e053289130b6962f830bd",
"reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd",
"url": "https://api.github.com/repos/laravel/framework/zipball/5e95946a8283a8d5c015035793f9c61c297e937f",
"reference": "5e95946a8283a8d5c015035793f9c61c297e937f",
"shasum": ""
},
"require": {
@ -2216,7 +2216,7 @@
"issues": "https://github.com/laravel/framework/issues",
"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",
@ -2298,16 +2298,16 @@
},
{
"name": "laravel/prompts",
"version": "v0.1.15",
"version": "v0.1.16",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
"reference": "d814a27514d99b03c85aa42b22cfd946568636c1"
"reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/prompts/zipball/d814a27514d99b03c85aa42b22cfd946568636c1",
"reference": "d814a27514d99b03c85aa42b22cfd946568636c1",
"url": "https://api.github.com/repos/laravel/prompts/zipball/ca6872ab6aec3ab61db3a61f83a6caf764ec7781",
"reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781",
"shasum": ""
},
"require": {
@ -2349,9 +2349,9 @@
],
"support": {
"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",
@ -4476,16 +4476,16 @@
},
{
"name": "phpseclib/phpseclib",
"version": "3.0.35",
"version": "3.0.36",
"source": {
"type": "git",
"url": "https://github.com/phpseclib/phpseclib.git",
"reference": "4b1827beabce71953ca479485c0ae9c51287f2fe"
"reference": "c2fb5136162d4be18fdd4da9980696f3aee96d7b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/4b1827beabce71953ca479485c0ae9c51287f2fe",
"reference": "4b1827beabce71953ca479485c0ae9c51287f2fe",
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c2fb5136162d4be18fdd4da9980696f3aee96d7b",
"reference": "c2fb5136162d4be18fdd4da9980696f3aee96d7b",
"shasum": ""
},
"require": {
@ -4566,7 +4566,7 @@
],
"support": {
"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": [
{
@ -4582,7 +4582,7 @@
"type": "tidelift"
}
],
"time": "2023-12-29T01:59:53+00:00"
"time": "2024-02-26T05:13:14+00:00"
},
{
"name": "pragmarx/google2fa",
@ -6028,16 +6028,16 @@
},
{
"name": "symfony/console",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
"reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e"
"reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
"reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
"url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
"reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
"shasum": ""
},
"require": {
@ -6102,7 +6102,7 @@
"terminal"
],
"support": {
"source": "https://github.com/symfony/console/tree/v6.4.3"
"source": "https://github.com/symfony/console/tree/v6.4.4"
},
"funding": [
{
@ -6118,7 +6118,7 @@
"type": "tidelift"
}
],
"time": "2024-01-23T14:51:35+00:00"
"time": "2024-02-22T20:27:10+00:00"
},
{
"name": "symfony/css-selector",
@ -6254,16 +6254,16 @@
},
{
"name": "symfony/error-handler",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
"reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6"
"reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6",
"reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
"reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
"shasum": ""
},
"require": {
@ -6309,7 +6309,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/error-handler/tree/v6.4.3"
"source": "https://github.com/symfony/error-handler/tree/v6.4.4"
},
"funding": [
{
@ -6325,7 +6325,7 @@
"type": "tidelift"
}
],
"time": "2024-01-29T15:40:36+00:00"
"time": "2024-02-22T20:27:10+00:00"
},
{
"name": "symfony/event-dispatcher",
@ -6549,16 +6549,16 @@
},
{
"name": "symfony/http-client",
"version": "v7.0.3",
"version": "v7.0.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
"reference": "3d2605c07cd14aec294f72f5bf8147702f7a5ada"
"reference": "8384876f49a2316a63f88a9cd12436de6936bee6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-client/zipball/3d2605c07cd14aec294f72f5bf8147702f7a5ada",
"reference": "3d2605c07cd14aec294f72f5bf8147702f7a5ada",
"url": "https://api.github.com/repos/symfony/http-client/zipball/8384876f49a2316a63f88a9cd12436de6936bee6",
"reference": "8384876f49a2316a63f88a9cd12436de6936bee6",
"shasum": ""
},
"require": {
@ -6621,7 +6621,7 @@
"http"
],
"support": {
"source": "https://github.com/symfony/http-client/tree/v7.0.3"
"source": "https://github.com/symfony/http-client/tree/v7.0.4"
},
"funding": [
{
@ -6637,7 +6637,7 @@
"type": "tidelift"
}
],
"time": "2024-01-29T15:41:16+00:00"
"time": "2024-02-15T11:33:06+00:00"
},
{
"name": "symfony/http-client-contracts",
@ -6719,16 +6719,16 @@
},
{
"name": "symfony/http-foundation",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9"
"reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
"reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
"reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
"shasum": ""
},
"require": {
@ -6776,7 +6776,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-foundation/tree/v6.4.3"
"source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
},
"funding": [
{
@ -6792,20 +6792,20 @@
"type": "tidelift"
}
],
"time": "2024-01-23T14:51:35+00:00"
"time": "2024-02-08T15:01:18+00:00"
},
{
"name": "symfony/http-kernel",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2"
"reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2",
"reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
"reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
"shasum": ""
},
"require": {
@ -6854,7 +6854,7 @@
"symfony/process": "^5.4|^6.0|^7.0",
"symfony/property-access": "^5.4.5|^6.0.5|^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/translation": "^5.4|^6.0|^7.0",
"symfony/translation-contracts": "^2.5|^3",
@ -6889,7 +6889,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-kernel/tree/v6.4.3"
"source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
},
"funding": [
{
@ -6905,20 +6905,20 @@
"type": "tidelift"
}
],
"time": "2024-01-31T07:21:29+00:00"
"time": "2024-02-27T06:32:13+00:00"
},
{
"name": "symfony/mailer",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
"reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee"
"reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
"reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
"url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
"reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
"shasum": ""
},
"require": {
@ -6969,7 +6969,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/mailer/tree/v6.4.3"
"source": "https://github.com/symfony/mailer/tree/v6.4.4"
},
"funding": [
{
@ -6985,20 +6985,20 @@
"type": "tidelift"
}
],
"time": "2024-01-29T15:01:07+00:00"
"time": "2024-02-03T21:33:47+00:00"
},
{
"name": "symfony/mailgun-mailer",
"version": "v7.0.3",
"version": "v7.0.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailgun-mailer.git",
"reference": "fa7d03eb374938cb1f7a04c17a11a0e969e38cb8"
"reference": "96df0d3815dc72367ecc38c4a82d8021f8bddd4e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/fa7d03eb374938cb1f7a04c17a11a0e969e38cb8",
"reference": "fa7d03eb374938cb1f7a04c17a11a0e969e38cb8",
"url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/96df0d3815dc72367ecc38c4a82d8021f8bddd4e",
"reference": "96df0d3815dc72367ecc38c4a82d8021f8bddd4e",
"shasum": ""
},
"require": {
@ -7038,7 +7038,7 @@
"description": "Symfony Mailgun Mailer Bridge",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/mailgun-mailer/tree/v7.0.3"
"source": "https://github.com/symfony/mailgun-mailer/tree/v7.0.4"
},
"funding": [
{
@ -7054,7 +7054,7 @@
"type": "tidelift"
}
],
"time": "2024-01-29T15:41:16+00:00"
"time": "2024-02-15T11:33:06+00:00"
},
{
"name": "symfony/mime",
@ -7853,16 +7853,16 @@
},
{
"name": "symfony/process",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
"reference": "31642b0818bfcff85930344ef93193f8c607e0a3"
"reference": "710e27879e9be3395de2b98da3f52a946039f297"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3",
"reference": "31642b0818bfcff85930344ef93193f8c607e0a3",
"url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
"reference": "710e27879e9be3395de2b98da3f52a946039f297",
"shasum": ""
},
"require": {
@ -7894,7 +7894,7 @@
"description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/process/tree/v6.4.3"
"source": "https://github.com/symfony/process/tree/v6.4.4"
},
"funding": [
{
@ -7910,7 +7910,7 @@
"type": "tidelift"
}
],
"time": "2024-01-23T14:51:35+00:00"
"time": "2024-02-20T12:31:00+00:00"
},
{
"name": "symfony/psr-http-message-bridge",
@ -8168,16 +8168,16 @@
},
{
"name": "symfony/string",
"version": "v7.0.3",
"version": "v7.0.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
"reference": "524aac4a280b90a4420d8d6a040718d0586505ac"
"reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac",
"reference": "524aac4a280b90a4420d8d6a040718d0586505ac",
"url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
"reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
"shasum": ""
},
"require": {
@ -8234,7 +8234,7 @@
"utf8"
],
"support": {
"source": "https://github.com/symfony/string/tree/v7.0.3"
"source": "https://github.com/symfony/string/tree/v7.0.4"
},
"funding": [
{
@ -8250,20 +8250,20 @@
"type": "tidelift"
}
],
"time": "2024-01-29T15:41:16+00:00"
"time": "2024-02-01T13:17:36+00:00"
},
{
"name": "symfony/translation",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
"reference": "637c51191b6b184184bbf98937702bcf554f7d04"
"reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04",
"reference": "637c51191b6b184184bbf98937702bcf554f7d04",
"url": "https://api.github.com/repos/symfony/translation/zipball/bce6a5a78e94566641b2594d17e48b0da3184a8e",
"reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e",
"shasum": ""
},
"require": {
@ -8329,7 +8329,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/translation/tree/v6.4.3"
"source": "https://github.com/symfony/translation/tree/v6.4.4"
},
"funding": [
{
@ -8345,7 +8345,7 @@
"type": "tidelift"
}
],
"time": "2024-01-29T13:11:52+00:00"
"time": "2024-02-20T13:16:58+00:00"
},
{
"name": "symfony/translation-contracts",
@ -8501,16 +8501,16 @@
},
{
"name": "symfony/var-dumper",
"version": "v6.4.3",
"version": "v6.4.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "0435a08f69125535336177c29d56af3abc1f69da"
"reference": "b439823f04c98b84d4366c79507e9da6230944b1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da",
"reference": "0435a08f69125535336177c29d56af3abc1f69da",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
"reference": "b439823f04c98b84d4366c79507e9da6230944b1",
"shasum": ""
},
"require": {
@ -8566,7 +8566,7 @@
"dump"
],
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v6.4.3"
"source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
},
"funding": [
{
@ -8582,7 +8582,7 @@
"type": "tidelift"
}
],
"time": "2024-01-23T14:53:30+00:00"
"time": "2024-02-15T11:23:52+00:00"
},
{
"name": "therobfonz/laravel-mandrill-driver",
@ -9551,16 +9551,16 @@
},
{
"name": "larastan/larastan",
"version": "v2.9.0",
"version": "v2.9.1",
"source": {
"type": "git",
"url": "https://github.com/larastan/larastan.git",
"reference": "35fa9cbe1895e76215bbe74571a344f2705fbe01"
"reference": "467113c58d110ad617cf9e07ff49b0948d1c03cc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/larastan/larastan/zipball/35fa9cbe1895e76215bbe74571a344f2705fbe01",
"reference": "35fa9cbe1895e76215bbe74571a344f2705fbe01",
"url": "https://api.github.com/repos/larastan/larastan/zipball/467113c58d110ad617cf9e07ff49b0948d1c03cc",
"reference": "467113c58d110ad617cf9e07ff49b0948d1c03cc",
"shasum": ""
},
"require": {
@ -9628,7 +9628,7 @@
],
"support": {
"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": [
{
@ -9648,7 +9648,7 @@
"type": "patreon"
}
],
"time": "2024-02-13T11:49:22+00:00"
"time": "2024-02-26T14:10:20+00:00"
},
{
"name": "maximebf/debugbar",

14
package-lock.json generated
View File

@ -61,9 +61,9 @@
"integrity": "sha512-Q44beV3vD1jydB0smro9+nJY9g60uSjQ+cM8cHEIS9gDCG/37WiabdtQybJceeIHbne51MJPtOAa89y/TfnbQg=="
},
"node_modules/@babel/runtime": {
"version": "7.23.9",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz",
"integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==",
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz",
"integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
@ -547,14 +547,14 @@
}
},
"node_modules/chart.js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.1.tgz",
"integrity": "sha512-C74QN1bxwV1v2PEujhmKjOZ7iUM4w6BWs23Md/6aOZZSlwMzeCIDGuZay++rBgChYru7/+QFeoQW0fQoP534Dg==",
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.2.tgz",
"integrity": "sha512-6GD7iKwFpP5kbSD4MeRRRlTnQvxfQREy36uEtm1hzHzcOqwWx0YEHuspuoNlslu+nciLIB7fjjsHkUv/FzFcOg==",
"dependencies": {
"@kurkle/color": "^0.3.0"
},
"engines": {
"pnpm": ">=7"
"pnpm": ">=8"
}
},
"node_modules/chartjs-adapter-date-fns": {

File diff suppressed because one or more lines are too long

View File

@ -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

View File

@ -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};

View File

@ -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

View File

@ -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};

View File

@ -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

View File

@ -1,57 +1,57 @@
{
"_create-empty-split-224dd5cc.js": {
"file": "assets/create-empty-split-224dd5cc.js",
"_create-empty-split-81f71b2e.js": {
"file": "assets/create-empty-split-81f71b2e.js",
"imports": [
"_vendor-29d868f9.js"
"_vendor-50e42c6c.js"
],
"integrity": "sha384-Fe4EFJyqGnKJtlPnsEmK9bgqfm3ME+peYLok4zFWW2E8Jw/DFrfWPutOuy51zo7k"
"integrity": "sha384-iCRJ+fmYZVSXY4L5+Q8vhQKqcjSi6lnglG7yW8deRAjJwiVaANm0EzriQPOAgQMS"
},
"_format-money-0eadc9a5.js": {
"file": "assets/format-money-0eadc9a5.js",
"_format-money-2e5851ad.js": {
"file": "assets/format-money-2e5851ad.js",
"imports": [
"_vendor-29d868f9.js"
"_vendor-50e42c6c.js"
],
"integrity": "sha384-V+tvR2m7nSG2M4f1nCws0Vblszq/fUzQP/4WHGwxTjPiT4Bx7Yp5joFuQqHtvCZc"
"integrity": "sha384-kzF0fVkQWinHDsR1R190XjenILJ0VYvD2H1rQJW23dJvcA18qRrGRyb9q+3RADZU"
},
"_get-e91a7549.js": {
"file": "assets/get-e91a7549.js",
"_get-28b9aa25.js": {
"file": "assets/get-28b9aa25.js",
"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": {
"file": "assets/get-eb14a1e7.js",
"_get-e0a81c64.js": {
"file": "assets/get-e0a81c64.js",
"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": {
"file": "assets/parse-downloaded-splits-c84e4e72.js",
"_parse-downloaded-splits-83822d1b.js": {
"file": "assets/parse-downloaded-splits-83822d1b.js",
"imports": [
"_create-empty-split-224dd5cc.js",
"_vendor-29d868f9.js"
"_create-empty-split-81f71b2e.js",
"_vendor-50e42c6c.js"
],
"integrity": "sha384-GyxMGgAOGUGeGS8GopF2E91A4aYAxkCOrEUGzaTmo7TR7DexiJaMU1hBtEKW0Zrg"
"integrity": "sha384-dPB0/W3hHYE/2m/HPqibSEe2N2XD7wMTePDsRd6fv03fKwgFu6mwOjUx1t3q6Gn6"
},
"_put-79877c04.js": {
"file": "assets/put-79877c04.js",
"_put-bb9ad93a.js": {
"file": "assets/put-bb9ad93a.js",
"imports": [
"_format-money-0eadc9a5.js"
"_format-money-2e5851ad.js"
],
"integrity": "sha384-nSv+7TrBp3yUaWf50t2s5NVoNKUbc0K5BXhYuEtemv1hmKdmdfg2XTAxlCwsER5h"
"integrity": "sha384-jk8bB684G+XotWRFO6k57GF1QGy6BUgFBb55JPsvU3clT6DBNA42ELW8vPyX9HbB"
},
"_splice-errors-into-transactions-cff36293.js": {
"file": "assets/splice-errors-into-transactions-cff36293.js",
"_splice-errors-into-transactions-6727b386.js": {
"file": "assets/splice-errors-into-transactions-6727b386.js",
"imports": [
"_format-money-0eadc9a5.js",
"_get-eb14a1e7.js",
"_vendor-29d868f9.js"
"_format-money-2e5851ad.js",
"_get-28b9aa25.js",
"_vendor-50e42c6c.js"
],
"integrity": "sha384-O1jAp6eMTgnWh9y/37DmSdkXmSPqn+yuOI9GNkKst2LXoQdNuSXXsUYdlY/XQ++B"
"integrity": "sha384-x5WY5RRt7J6TLl+7nLZi1TBBKgUmjNokUh2ezaofCTQp0sEkHQrmJYAGUX/ZwPY4"
},
"_vendor-29d868f9.js": {
"_vendor-50e42c6c.js": {
"assets": [
"assets/layers-1dbbe9d0.png",
"assets/layers-2x-066daca8.png",
@ -60,8 +60,8 @@
"css": [
"assets/vendor-6fbf50c2.css"
],
"file": "assets/vendor-29d868f9.js",
"integrity": "sha384-b6NeUOA/F71YH766Rxtqtj4DCc+ZvbSVfDKd7vnZR9LilLr3wu/7SaEQn6wnqZ2f"
"file": "assets/vendor-50e42c6c.js",
"integrity": "sha384-dsSpdnRISp7bIdL3fpyygvNfUizujkwhA11RPZehiEUvEt52ESLYt+Hlp3c9/iZp"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
"file": "assets/fa-brands-400-5656d596.ttf",
@ -109,45 +109,45 @@
"integrity": "sha384-wg83fCOXjBtqzFAWhTL9Sd9vmLUNhfEEzfmNUX9zwv2igKlz/YQbdapF4ObdxF+R"
},
"resources/assets/v2/pages/dashboard/dashboard.js": {
"file": "assets/dashboard-79f411ba.js",
"file": "assets/dashboard-5f195194.js",
"imports": [
"_format-money-0eadc9a5.js",
"_vendor-29d868f9.js",
"_get-e91a7549.js",
"_get-eb14a1e7.js"
"_format-money-2e5851ad.js",
"_vendor-50e42c6c.js",
"_get-e0a81c64.js",
"_get-28b9aa25.js"
],
"isEntry": true,
"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": {
"file": "assets/create-865d3a86.js",
"file": "assets/create-5a4939e8.js",
"imports": [
"_format-money-0eadc9a5.js",
"_create-empty-split-224dd5cc.js",
"_splice-errors-into-transactions-cff36293.js",
"_vendor-29d868f9.js",
"_get-eb14a1e7.js"
"_format-money-2e5851ad.js",
"_create-empty-split-81f71b2e.js",
"_splice-errors-into-transactions-6727b386.js",
"_vendor-50e42c6c.js",
"_get-28b9aa25.js"
],
"isEntry": true,
"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": {
"file": "assets/edit-5b2f31e3.js",
"file": "assets/edit-4c7ba005.js",
"imports": [
"_format-money-0eadc9a5.js",
"_get-e91a7549.js",
"_parse-downloaded-splits-c84e4e72.js",
"_splice-errors-into-transactions-cff36293.js",
"_vendor-29d868f9.js",
"_create-empty-split-224dd5cc.js",
"_put-79877c04.js",
"_get-eb14a1e7.js"
"_format-money-2e5851ad.js",
"_get-e0a81c64.js",
"_parse-downloaded-splits-83822d1b.js",
"_splice-errors-into-transactions-6727b386.js",
"_vendor-50e42c6c.js",
"_create-empty-split-81f71b2e.js",
"_put-bb9ad93a.js",
"_get-28b9aa25.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/transactions/edit.js",
"integrity": "sha384-0cKgNr169FUfm4fZWDchcbD4iUvaJvudytdMpwy2XcV89r8OS1kDIiiTdDr8rnuo"
"integrity": "sha384-MOmzHUGTHwnuic0yw3wUp8MJO+Y9iLdXGy+V5iWtiZLpG2ts8z8R8Ms9Gp9L7Rc0"
},
"resources/assets/v2/pages/transactions/index.css": {
"file": "assets/index-badb0a41.css",
@ -158,16 +158,16 @@
"css": [
"assets/index-badb0a41.css"
],
"file": "assets/index-914edd04.js",
"file": "assets/index-90222973.js",
"imports": [
"_format-money-0eadc9a5.js",
"_vendor-29d868f9.js",
"_put-79877c04.js",
"_get-e91a7549.js"
"_format-money-2e5851ad.js",
"_vendor-50e42c6c.js",
"_put-bb9ad93a.js",
"_get-e0a81c64.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/transactions/index.js",
"integrity": "sha384-I1nmsMl3NamObjMGO9FejfgfHD9YH4MTbwyemaQMk6s87pWgY5Y5PeWtTLmnAubR"
"integrity": "sha384-Sl6bKzSJxtyjnJoamDiBSZwdCi+AA8ZV/s40dXKFznm6RfYLiBLSS2qmQMlrVPZT"
},
"resources/assets/v2/pages/transactions/show.css": {
"file": "assets/show-8b1429e5.css",
@ -178,17 +178,17 @@
"css": [
"assets/show-8b1429e5.css"
],
"file": "assets/show-9c7036f1.js",
"file": "assets/show-3ef1a32a.js",
"imports": [
"_format-money-0eadc9a5.js",
"_vendor-29d868f9.js",
"_get-e91a7549.js",
"_parse-downloaded-splits-c84e4e72.js",
"_create-empty-split-224dd5cc.js"
"_format-money-2e5851ad.js",
"_vendor-50e42c6c.js",
"_get-e0a81c64.js",
"_parse-downloaded-splits-83822d1b.js",
"_create-empty-split-81f71b2e.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/transactions/show.js",
"integrity": "sha384-2XV3HPlPXYyJzcBmOQ3rTFIRpCxSeFpkdpGCCZyAShCgQO2JgR5wZpbo5qdLoyti"
"integrity": "sha384-SbD7zS5YgCmKGz4yqp3mEIvEye39FouSpd2+WCld8l7Wij23HCUdfGgF/cD+b21y"
},
"resources/assets/v2/sass/app.scss": {
"file": "assets/app-fb7b26ec.css",

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Тази транзакция вече е теглене',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Opcions de tramesa',
'apply_rules_checkbox' => 'Aplicar regles',
'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_is_already_type_Withdrawal' => 'Aquesta transacció ja és una retirada',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Tato transakce už je výběrem',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Denne transaktion er allerede en udbetaling',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Übermittlungsoptionen',
'apply_rules_checkbox' => 'Regeln anwenden',
'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_is_already_type_Withdrawal' => 'Diese Buchung ist bereits eine Ausgabe',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Αυτή η συναλλαγή είναι ήδη μία ανάληψη',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',

View File

@ -1541,8 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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',
'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_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Opciones de envío',
'apply_rules_checkbox' => 'Aplicar reglas',
'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_is_already_type_Withdrawal' => 'Esta transferencia ya es un gasto',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Tämä tapahtuma on jo nosto',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Options de soumission',
'apply_rules_checkbox' => 'Appliquer les règles',
'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_is_already_type_Withdrawal' => 'Cette opération est déjà une dépense',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Ez a tranzakció már egy költség',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Transaksi ini sudah menjadi penarikan',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Opzioni di invio',
'apply_rules_checkbox' => 'Applica le regole',
'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_is_already_type_Withdrawal' => 'Questa transazione è già un\'uscita',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => '送信オプション',
'apply_rules_checkbox' => 'ルールを適用',
'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_is_already_type_Withdrawal' => 'この取引はすでに出金です',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => '제출 옵션',
'apply_rules_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_is_already_type_Withdrawal' => '이 거래는 이미 출금되었습니다',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Alternativer for innsending',
'apply_rules_checkbox' => 'Bruk regler',
'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_is_already_type_Withdrawal' => 'Denne transaksjonen er allerede et uttak',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Inzending opties',
'apply_rules_checkbox' => 'Regels toepassen',
'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_is_already_type_Withdrawal' => 'Deze transactie is al een uitgave',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Alternativer for innsending',
'apply_rules_checkbox' => 'Bruk reglar',
'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_is_already_type_Withdrawal' => 'Denne transaksjonen er allereie eit uttak',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Opcje zapisu',
'apply_rules_checkbox' => 'Zastosuj reguły',
'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_is_already_type_Withdrawal' => 'Ta transakcja jest już wypłatą',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Opções de envio',
'apply_rules_checkbox' => 'Aplicar regras',
'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_is_already_type_Withdrawal' => 'Esta transação já é uma saída',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Opções de submissão',
'apply_rules_checkbox' => 'Aplicar regras',
'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_is_already_type_Withdrawal' => 'Esta transação já e um levantamento',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Această tranzacție este deja o retragere',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Опции отправки',
'apply_rules_checkbox' => 'Применить правила',
'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_is_already_type_Withdrawal' => 'Эта транзакция уже является расходом',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Tato transakcia už je výber',

View File

@ -1526,7 +1526,7 @@ return [
'delete_attachment' => 'Izbriši prilogo ":name"',
'attachment_deleted' => 'Priloga ":name" izbrisana',
'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',
'list_all_attachments' => 'Seznam vseh prilog',
@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Možnosti oddaje',
'apply_rules_checkbox' => 'Uporabite pravila',
'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_is_already_type_Withdrawal' => 'Ta transakcija je že odliv',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Transaktionen är redan ett uttag',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',

View File

@ -1542,6 +1542,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Bu işlem zaten bir para çekme işlemidir',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Застосувати правила',
'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_is_already_type_Withdrawal' => 'Ця транзакція вже є витратою',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => 'Giao dịch này đã được rút tiền',

View File

@ -1542,6 +1542,8 @@ return [
'submission_options' => '提交选项',
'apply_rules_checkbox' => '应用规则',
'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_is_already_type_Withdrawal' => '此交易已经为支出',

View File

@ -1541,6 +1541,8 @@ return [
'submission_options' => 'Submission options',
'apply_rules_checkbox' => 'Apply rules',
'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_is_already_type_Withdrawal' => '此交易已是一筆提款',