mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Update packages and meta files for new release.
This commit is contained in:
parent
9a944175ac
commit
ab9f26f850
@ -50,15 +50,14 @@ class SecureHeaders
|
|||||||
|
|
||||||
$response = $next($request);
|
$response = $next($request);
|
||||||
$trackingScriptSrc = $this->getTrackingScriptSource();
|
$trackingScriptSrc = $this->getTrackingScriptSource();
|
||||||
$newRelicSrc = $this->getNewRelicSource();
|
|
||||||
$csp = [
|
$csp = [
|
||||||
"default-src 'none'",
|
"default-src 'none'",
|
||||||
"object-src 'none'",
|
"object-src 'none'",
|
||||||
sprintf("script-src 'unsafe-eval' 'strict-dynamic' 'self' 'unsafe-inline' 'nonce-%1s' %2s %3s", $nonce, $trackingScriptSrc, $newRelicSrc),
|
sprintf("script-src 'unsafe-eval' 'strict-dynamic' 'self' 'unsafe-inline' 'nonce-%1s' %2s", $nonce, $trackingScriptSrc),
|
||||||
"style-src 'unsafe-inline' 'self'",
|
"style-src 'unsafe-inline' 'self'",
|
||||||
"base-uri 'self'",
|
"base-uri 'self'",
|
||||||
"font-src 'self' data:",
|
"font-src 'self' data:",
|
||||||
sprintf("connect-src 'self' %s %s", $trackingScriptSrc, $newRelicSrc),
|
sprintf("connect-src 'self' %s", $trackingScriptSrc),
|
||||||
sprintf("img-src data: 'strict-dynamic' 'self' *.tile.openstreetmap.org %s", $trackingScriptSrc),
|
sprintf("img-src data: 'strict-dynamic' 'self' *.tile.openstreetmap.org %s", $trackingScriptSrc),
|
||||||
"manifest-src 'self'",
|
"manifest-src 'self'",
|
||||||
];
|
];
|
||||||
@ -102,18 +101,6 @@ class SecureHeaders
|
|||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the domain name of New Relic (used on the demo site)
|
|
||||||
* The check for this value is an undocumented .env variable
|
|
||||||
*/
|
|
||||||
private function getNewRelicSource(): string
|
|
||||||
{
|
|
||||||
if(true === env('ENABLE_NEW_RELIC', false)) {
|
|
||||||
return 'bam.eu01.nr-data.net';
|
|
||||||
}
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return part of a CSP header allowing scripts from Matomo.
|
* Return part of a CSP header allowing scripts from Matomo.
|
||||||
*
|
*
|
||||||
|
20
changelog.md
20
changelog.md
@ -2,6 +2,26 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## 5.6.11 - 2022-01-28
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Added various debug log entries to diagnose issues
|
||||||
|
- Add various validation rules to the report page
|
||||||
|
- Created a new search option and rule trigger for the `external_url`-field, thanks @GeorgeHahn!
|
||||||
|
- Extra support for the `DB_SOCKET` configuration value in various places
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [Issue 5422](https://github.com/firefly-iii/firefly-iii/issues/5422) Updating a liability account fails when passing in opening balance and opening balance date via API
|
||||||
|
- [Issue 5540](https://github.com/firefly-iii/firefly-iii/issues/5540) Move rules using the API
|
||||||
|
- [Issue 5575](https://github.com/firefly-iii/firefly-iii/issues/5575) Reconciling with a non-real date makes the reconciliation screen fail to load
|
||||||
|
- [Issue 5610](https://github.com/firefly-iii/firefly-iii/issues/5610) Updating transaction with invalid splits fixed
|
||||||
|
|
||||||
|
### API
|
||||||
|
- [Issue 5540](https://github.com/firefly-iii/firefly-iii/issues/5540) Move rules using the API
|
||||||
|
- [Issue 5610](https://github.com/firefly-iii/firefly-iii/issues/5610) Updating transaction with invalid splits fixed
|
||||||
|
- Add missing field, external_url
|
||||||
|
- Various fixes in transaction PUT endpoint.
|
||||||
|
|
||||||
## 5.6.10 - 2022-01-10
|
## 5.6.10 - 2022-01-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
390
composer.lock
generated
390
composer.lock
generated
@ -1770,16 +1770,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/framework",
|
"name": "laravel/framework",
|
||||||
"version": "v8.80.0",
|
"version": "v8.81.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/framework.git",
|
"url": "https://github.com/laravel/framework.git",
|
||||||
"reference": "8949a2e46b0f274f39c61eee8d5de1dc6a1f686b"
|
"reference": "9cc0efd724ce67a190b1695ba31a27bbb1ae9177"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/framework/zipball/8949a2e46b0f274f39c61eee8d5de1dc6a1f686b",
|
"url": "https://api.github.com/repos/laravel/framework/zipball/9cc0efd724ce67a190b1695ba31a27bbb1ae9177",
|
||||||
"reference": "8949a2e46b0f274f39c61eee8d5de1dc6a1f686b",
|
"reference": "9cc0efd724ce67a190b1695ba31a27bbb1ae9177",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -1812,7 +1812,7 @@
|
|||||||
"symfony/var-dumper": "^5.4",
|
"symfony/var-dumper": "^5.4",
|
||||||
"tijsverkoyen/css-to-inline-styles": "^2.2.2",
|
"tijsverkoyen/css-to-inline-styles": "^2.2.2",
|
||||||
"vlucas/phpdotenv": "^5.4.1",
|
"vlucas/phpdotenv": "^5.4.1",
|
||||||
"voku/portable-ascii": "^1.4.8"
|
"voku/portable-ascii": "^1.6.1"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"tightenco/collect": "<5.5.33"
|
"tightenco/collect": "<5.5.33"
|
||||||
@ -1939,20 +1939,20 @@
|
|||||||
"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": "2022-01-18T15:51:42+00:00"
|
"time": "2022-01-25T16:41:46+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/passport",
|
"name": "laravel/passport",
|
||||||
"version": "v10.3.0",
|
"version": "v10.3.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/passport.git",
|
"url": "https://github.com/laravel/passport.git",
|
||||||
"reference": "b4a829e52f57e871f6c40717b9c9770cac5ad795"
|
"reference": "779e34f0152f42fb76b258d814956313fa38857c"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/passport/zipball/b4a829e52f57e871f6c40717b9c9770cac5ad795",
|
"url": "https://api.github.com/repos/laravel/passport/zipball/779e34f0152f42fb76b258d814956313fa38857c",
|
||||||
"reference": "b4a829e52f57e871f6c40717b9c9770cac5ad795",
|
"reference": "779e34f0152f42fb76b258d814956313fa38857c",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2016,7 +2016,7 @@
|
|||||||
"issues": "https://github.com/laravel/passport/issues",
|
"issues": "https://github.com/laravel/passport/issues",
|
||||||
"source": "https://github.com/laravel/passport"
|
"source": "https://github.com/laravel/passport"
|
||||||
},
|
},
|
||||||
"time": "2022-01-12T18:12:12+00:00"
|
"time": "2022-01-25T20:06:06+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/sanctum",
|
"name": "laravel/sanctum",
|
||||||
@ -2143,16 +2143,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/ui",
|
"name": "laravel/ui",
|
||||||
"version": "v3.4.1",
|
"version": "v3.4.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/ui.git",
|
"url": "https://github.com/laravel/ui.git",
|
||||||
"reference": "9a1e52442dd238647905b98d773d59e438eb9f9d"
|
"reference": "e01198123f7f4369d13c1f83a897c3f5e97fc9f4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/ui/zipball/9a1e52442dd238647905b98d773d59e438eb9f9d",
|
"url": "https://api.github.com/repos/laravel/ui/zipball/e01198123f7f4369d13c1f83a897c3f5e97fc9f4",
|
||||||
"reference": "9a1e52442dd238647905b98d773d59e438eb9f9d",
|
"reference": "e01198123f7f4369d13c1f83a897c3f5e97fc9f4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2198,9 +2198,9 @@
|
|||||||
"ui"
|
"ui"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/laravel/ui/tree/v3.4.1"
|
"source": "https://github.com/laravel/ui/tree/v3.4.2"
|
||||||
},
|
},
|
||||||
"time": "2021-12-22T10:40:50+00:00"
|
"time": "2022-01-25T20:15:56+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravelcollective/html",
|
"name": "laravelcollective/html",
|
||||||
@ -2410,16 +2410,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/commonmark",
|
"name": "league/commonmark",
|
||||||
"version": "2.2.0",
|
"version": "2.2.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/commonmark.git",
|
"url": "https://github.com/thephpleague/commonmark.git",
|
||||||
"reference": "c5aadcc15548629787d02b86a7afef03b46271b5"
|
"reference": "f8afb78f087777b040e0ab8a6b6ca93f6fc3f18a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c5aadcc15548629787d02b86a7afef03b46271b5",
|
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/f8afb78f087777b040e0ab8a6b6ca93f6fc3f18a",
|
||||||
"reference": "c5aadcc15548629787d02b86a7afef03b46271b5",
|
"reference": "f8afb78f087777b040e0ab8a6b6ca93f6fc3f18a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2427,7 +2427,7 @@
|
|||||||
"league/config": "^1.1.1",
|
"league/config": "^1.1.1",
|
||||||
"php": "^7.4 || ^8.0",
|
"php": "^7.4 || ^8.0",
|
||||||
"psr/event-dispatcher": "^1.0",
|
"psr/event-dispatcher": "^1.0",
|
||||||
"symfony/deprecation-contracts": "^v2.1 || ^3.0",
|
"symfony/deprecation-contracts": "^2.1 || ^3.0",
|
||||||
"symfony/polyfill-php80": "^1.15"
|
"symfony/polyfill-php80": "^1.15"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
@ -2510,7 +2510,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2022-01-22T14:06:22+00:00"
|
"time": "2022-01-25T14:37:33+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/config",
|
"name": "league/config",
|
||||||
@ -3458,16 +3458,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "opis/closure",
|
"name": "opis/closure",
|
||||||
"version": "3.6.2",
|
"version": "3.6.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/opis/closure.git",
|
"url": "https://github.com/opis/closure.git",
|
||||||
"reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
|
"reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
|
"url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
|
||||||
"reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
|
"reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -3517,22 +3517,22 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/opis/closure/issues",
|
"issues": "https://github.com/opis/closure/issues",
|
||||||
"source": "https://github.com/opis/closure/tree/3.6.2"
|
"source": "https://github.com/opis/closure/tree/3.6.3"
|
||||||
},
|
},
|
||||||
"time": "2021-04-09T13:42:10+00:00"
|
"time": "2022-01-27T09:35:39+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "paragonie/constant_time_encoding",
|
"name": "paragonie/constant_time_encoding",
|
||||||
"version": "v2.4.0",
|
"version": "v2.5.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/paragonie/constant_time_encoding.git",
|
"url": "https://github.com/paragonie/constant_time_encoding.git",
|
||||||
"reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
|
"reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
|
"url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/9229e15f2e6ba772f0c55dd6986c563b937170a8",
|
||||||
"reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
|
"reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -3586,7 +3586,7 @@
|
|||||||
"issues": "https://github.com/paragonie/constant_time_encoding/issues",
|
"issues": "https://github.com/paragonie/constant_time_encoding/issues",
|
||||||
"source": "https://github.com/paragonie/constant_time_encoding"
|
"source": "https://github.com/paragonie/constant_time_encoding"
|
||||||
},
|
},
|
||||||
"time": "2020-12-06T15:14:20+00:00"
|
"time": "2022-01-17T05:32:27+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "paragonie/random_compat",
|
"name": "paragonie/random_compat",
|
||||||
@ -4967,16 +4967,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/console",
|
"name": "symfony/console",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/console.git",
|
"url": "https://github.com/symfony/console.git",
|
||||||
"reference": "a2c6b7ced2eb7799a35375fb9022519282b5405e"
|
"reference": "a2a86ec353d825c75856c6fd14fac416a7bdb6b8"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/a2c6b7ced2eb7799a35375fb9022519282b5405e",
|
"url": "https://api.github.com/repos/symfony/console/zipball/a2a86ec353d825c75856c6fd14fac416a7bdb6b8",
|
||||||
"reference": "a2c6b7ced2eb7799a35375fb9022519282b5405e",
|
"reference": "a2a86ec353d825c75856c6fd14fac416a7bdb6b8",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5046,7 +5046,7 @@
|
|||||||
"terminal"
|
"terminal"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/console/tree/v5.4.2"
|
"source": "https://github.com/symfony/console/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5062,25 +5062,24 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-20T16:11:12+00:00"
|
"time": "2022-01-26T16:28:35+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/css-selector",
|
"name": "symfony/css-selector",
|
||||||
"version": "v5.4.2",
|
"version": "v6.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/css-selector.git",
|
"url": "https://github.com/symfony/css-selector.git",
|
||||||
"reference": "cfcbee910e159df402603502fe387e8b677c22fd"
|
"reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/css-selector/zipball/cfcbee910e159df402603502fe387e8b677c22fd",
|
"url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
|
||||||
"reference": "cfcbee910e159df402603502fe387e8b677c22fd",
|
"reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=8.0.2"
|
||||||
"symfony/polyfill-php80": "^1.16"
|
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -5112,7 +5111,7 @@
|
|||||||
"description": "Converts CSS selectors to XPath expressions",
|
"description": "Converts CSS selectors to XPath expressions",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/css-selector/tree/v5.4.2"
|
"source": "https://github.com/symfony/css-selector/tree/v6.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5128,29 +5127,29 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-16T21:58:21+00:00"
|
"time": "2022-01-02T09:55:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/deprecation-contracts",
|
"name": "symfony/deprecation-contracts",
|
||||||
"version": "v2.5.0",
|
"version": "v3.0.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/deprecation-contracts.git",
|
"url": "https://github.com/symfony/deprecation-contracts.git",
|
||||||
"reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
|
"reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
|
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
|
||||||
"reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
|
"reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.1"
|
"php": ">=8.0.2"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "2.5-dev"
|
"dev-main": "3.0-dev"
|
||||||
},
|
},
|
||||||
"thanks": {
|
"thanks": {
|
||||||
"name": "symfony/contracts",
|
"name": "symfony/contracts",
|
||||||
@ -5179,7 +5178,7 @@
|
|||||||
"description": "A generic function and convention to trigger deprecation notices",
|
"description": "A generic function and convention to trigger deprecation notices",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
|
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5195,20 +5194,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-07-12T14:48:14+00:00"
|
"time": "2021-11-01T23:48:49+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/error-handler",
|
"name": "symfony/error-handler",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/error-handler.git",
|
"url": "https://github.com/symfony/error-handler.git",
|
||||||
"reference": "e0c0dd0f9d4120a20158fc9aec2367d07d38bc56"
|
"reference": "c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/error-handler/zipball/e0c0dd0f9d4120a20158fc9aec2367d07d38bc56",
|
"url": "https://api.github.com/repos/symfony/error-handler/zipball/c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5",
|
||||||
"reference": "e0c0dd0f9d4120a20158fc9aec2367d07d38bc56",
|
"reference": "c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5250,7 +5249,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/v5.4.2"
|
"source": "https://github.com/symfony/error-handler/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5266,44 +5265,42 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-19T20:02:00+00:00"
|
"time": "2022-01-02T09:53:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/event-dispatcher",
|
"name": "symfony/event-dispatcher",
|
||||||
"version": "v5.4.0",
|
"version": "v6.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/event-dispatcher.git",
|
"url": "https://github.com/symfony/event-dispatcher.git",
|
||||||
"reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
|
"reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
|
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6472ea2dd415e925b90ca82be64b8bc6157f3934",
|
||||||
"reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
|
"reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=8.0.2",
|
||||||
"symfony/deprecation-contracts": "^2.1|^3",
|
"symfony/event-dispatcher-contracts": "^2|^3"
|
||||||
"symfony/event-dispatcher-contracts": "^2|^3",
|
|
||||||
"symfony/polyfill-php80": "^1.16"
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"symfony/dependency-injection": "<4.4"
|
"symfony/dependency-injection": "<5.4"
|
||||||
},
|
},
|
||||||
"provide": {
|
"provide": {
|
||||||
"psr/event-dispatcher-implementation": "1.0",
|
"psr/event-dispatcher-implementation": "1.0",
|
||||||
"symfony/event-dispatcher-implementation": "2.0"
|
"symfony/event-dispatcher-implementation": "2.0|3.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"psr/log": "^1|^2|^3",
|
"psr/log": "^1|^2|^3",
|
||||||
"symfony/config": "^4.4|^5.0|^6.0",
|
"symfony/config": "^5.4|^6.0",
|
||||||
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
|
"symfony/dependency-injection": "^5.4|^6.0",
|
||||||
"symfony/error-handler": "^4.4|^5.0|^6.0",
|
"symfony/error-handler": "^5.4|^6.0",
|
||||||
"symfony/expression-language": "^4.4|^5.0|^6.0",
|
"symfony/expression-language": "^5.4|^6.0",
|
||||||
"symfony/http-foundation": "^4.4|^5.0|^6.0",
|
"symfony/http-foundation": "^5.4|^6.0",
|
||||||
"symfony/service-contracts": "^1.1|^2|^3",
|
"symfony/service-contracts": "^1.1|^2|^3",
|
||||||
"symfony/stopwatch": "^4.4|^5.0|^6.0"
|
"symfony/stopwatch": "^5.4|^6.0"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"symfony/dependency-injection": "",
|
"symfony/dependency-injection": "",
|
||||||
@ -5335,7 +5332,7 @@
|
|||||||
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
|
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
|
"source": "https://github.com/symfony/event-dispatcher/tree/v6.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5351,24 +5348,24 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-11-23T10:19:22+00:00"
|
"time": "2022-01-02T09:55:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/event-dispatcher-contracts",
|
"name": "symfony/event-dispatcher-contracts",
|
||||||
"version": "v2.5.0",
|
"version": "v3.0.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
|
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
|
||||||
"reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
|
"reference": "aa5422287b75594b90ee9cd807caf8f0df491385"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
|
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/aa5422287b75594b90ee9cd807caf8f0df491385",
|
||||||
"reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
|
"reference": "aa5422287b75594b90ee9cd807caf8f0df491385",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=8.0.2",
|
||||||
"psr/event-dispatcher": "^1"
|
"psr/event-dispatcher": "^1"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
@ -5377,7 +5374,7 @@
|
|||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "2.5-dev"
|
"dev-main": "3.0-dev"
|
||||||
},
|
},
|
||||||
"thanks": {
|
"thanks": {
|
||||||
"name": "symfony/contracts",
|
"name": "symfony/contracts",
|
||||||
@ -5414,7 +5411,7 @@
|
|||||||
"standards"
|
"standards"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
|
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5430,20 +5427,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-07-12T14:48:14+00:00"
|
"time": "2021-07-15T12:33:35+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/finder",
|
"name": "symfony/finder",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/finder.git",
|
"url": "https://github.com/symfony/finder.git",
|
||||||
"reference": "e77046c252be48c48a40816187ed527703c8f76c"
|
"reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/finder/zipball/e77046c252be48c48a40816187ed527703c8f76c",
|
"url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
|
||||||
"reference": "e77046c252be48c48a40816187ed527703c8f76c",
|
"reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5477,7 +5474,7 @@
|
|||||||
"description": "Finds files and directories via an intuitive fluent interface",
|
"description": "Finds files and directories via an intuitive fluent interface",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/finder/tree/v5.4.2"
|
"source": "https://github.com/symfony/finder/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5493,20 +5490,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-15T11:06:13+00:00"
|
"time": "2022-01-26T16:34:36+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-foundation",
|
"name": "symfony/http-foundation",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-foundation.git",
|
"url": "https://github.com/symfony/http-foundation.git",
|
||||||
"reference": "ce952af52877eaf3eab5d0c08cc0ea865ed37313"
|
"reference": "ef409ff341a565a3663157d4324536746d49a0c7"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce952af52877eaf3eab5d0c08cc0ea865ed37313",
|
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/ef409ff341a565a3663157d4324536746d49a0c7",
|
||||||
"reference": "ce952af52877eaf3eab5d0c08cc0ea865ed37313",
|
"reference": "ef409ff341a565a3663157d4324536746d49a0c7",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5550,7 +5547,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/v5.4.2"
|
"source": "https://github.com/symfony/http-foundation/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5566,20 +5563,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-28T17:15:56+00:00"
|
"time": "2022-01-02T09:53:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-kernel",
|
"name": "symfony/http-kernel",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-kernel.git",
|
"url": "https://github.com/symfony/http-kernel.git",
|
||||||
"reference": "35b7e9868953e0d1df84320bb063543369e43ef5"
|
"reference": "936ca1ba7fb197c9e100a68d7e963b93d99db26e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/35b7e9868953e0d1df84320bb063543369e43ef5",
|
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/936ca1ba7fb197c9e100a68d7e963b93d99db26e",
|
||||||
"reference": "35b7e9868953e0d1df84320bb063543369e43ef5",
|
"reference": "936ca1ba7fb197c9e100a68d7e963b93d99db26e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5662,7 +5659,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/v5.4.2"
|
"source": "https://github.com/symfony/http-kernel/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5678,20 +5675,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-29T13:20:26+00:00"
|
"time": "2022-01-28T11:06:03+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/mime",
|
"name": "symfony/mime",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/mime.git",
|
"url": "https://github.com/symfony/mime.git",
|
||||||
"reference": "1bfd938cf9562822c05c4d00e8f92134d3c8e42d"
|
"reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/mime/zipball/1bfd938cf9562822c05c4d00e8f92134d3c8e42d",
|
"url": "https://api.github.com/repos/symfony/mime/zipball/e1503cfb5c9a225350f549d3bb99296f4abfb80f",
|
||||||
"reference": "1bfd938cf9562822c05c4d00e8f92134d3c8e42d",
|
"reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5745,7 +5742,7 @@
|
|||||||
"mime-type"
|
"mime-type"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/mime/tree/v5.4.2"
|
"source": "https://github.com/symfony/mime/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -5761,7 +5758,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-28T17:15:56+00:00"
|
"time": "2022-01-02T09:53:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-ctype",
|
"name": "symfony/polyfill-ctype",
|
||||||
@ -6582,16 +6579,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/process",
|
"name": "symfony/process",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/process.git",
|
"url": "https://github.com/symfony/process.git",
|
||||||
"reference": "2b3ba8722c4aaf3e88011be5e7f48710088fb5e4"
|
"reference": "553f50487389a977eb31cf6b37faae56da00f753"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/2b3ba8722c4aaf3e88011be5e7f48710088fb5e4",
|
"url": "https://api.github.com/repos/symfony/process/zipball/553f50487389a977eb31cf6b37faae56da00f753",
|
||||||
"reference": "2b3ba8722c4aaf3e88011be5e7f48710088fb5e4",
|
"reference": "553f50487389a977eb31cf6b37faae56da00f753",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6624,7 +6621,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/v5.4.2"
|
"source": "https://github.com/symfony/process/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6640,7 +6637,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-27T21:01:00+00:00"
|
"time": "2022-01-26T16:28:35+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/psr-http-message-bridge",
|
"name": "symfony/psr-http-message-bridge",
|
||||||
@ -6732,16 +6729,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/routing",
|
"name": "symfony/routing",
|
||||||
"version": "v5.4.0",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/routing.git",
|
"url": "https://github.com/symfony/routing.git",
|
||||||
"reference": "9eeae93c32ca86746e5d38f3679e9569981038b1"
|
"reference": "44b29c7a94e867ccde1da604792f11a469958981"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/routing/zipball/9eeae93c32ca86746e5d38f3679e9569981038b1",
|
"url": "https://api.github.com/repos/symfony/routing/zipball/44b29c7a94e867ccde1da604792f11a469958981",
|
||||||
"reference": "9eeae93c32ca86746e5d38f3679e9569981038b1",
|
"reference": "44b29c7a94e867ccde1da604792f11a469958981",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -6802,7 +6799,7 @@
|
|||||||
"url"
|
"url"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/routing/tree/v5.4.0"
|
"source": "https://github.com/symfony/routing/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6818,26 +6815,25 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-11-23T10:19:22+00:00"
|
"time": "2022-01-02T09:53:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/service-contracts",
|
"name": "symfony/service-contracts",
|
||||||
"version": "v2.5.0",
|
"version": "v2.4.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/service-contracts.git",
|
"url": "https://github.com/symfony/service-contracts.git",
|
||||||
"reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
|
"reference": "d664541b99d6fb0247ec5ff32e87238582236204"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
|
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/d664541b99d6fb0247ec5ff32e87238582236204",
|
||||||
"reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
|
"reference": "d664541b99d6fb0247ec5ff32e87238582236204",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=7.2.5",
|
||||||
"psr/container": "^1.1",
|
"psr/container": "^1.1"
|
||||||
"symfony/deprecation-contracts": "^2.1"
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"ext-psr": "<1.1|>=2"
|
"ext-psr": "<1.1|>=2"
|
||||||
@ -6848,7 +6844,7 @@
|
|||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "2.5-dev"
|
"dev-main": "2.4-dev"
|
||||||
},
|
},
|
||||||
"thanks": {
|
"thanks": {
|
||||||
"name": "symfony/contracts",
|
"name": "symfony/contracts",
|
||||||
@ -6885,7 +6881,7 @@
|
|||||||
"standards"
|
"standards"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
|
"source": "https://github.com/symfony/service-contracts/tree/v2.4.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6901,38 +6897,37 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-11-04T16:48:04+00:00"
|
"time": "2021-11-04T16:37:19+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/string",
|
"name": "symfony/string",
|
||||||
"version": "v5.4.2",
|
"version": "v6.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/string.git",
|
"url": "https://github.com/symfony/string.git",
|
||||||
"reference": "e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d"
|
"reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/string/zipball/e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d",
|
"url": "https://api.github.com/repos/symfony/string/zipball/522144f0c4c004c80d56fa47e40e17028e2eefc2",
|
||||||
"reference": "e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d",
|
"reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=8.0.2",
|
||||||
"symfony/polyfill-ctype": "~1.8",
|
"symfony/polyfill-ctype": "~1.8",
|
||||||
"symfony/polyfill-intl-grapheme": "~1.0",
|
"symfony/polyfill-intl-grapheme": "~1.0",
|
||||||
"symfony/polyfill-intl-normalizer": "~1.0",
|
"symfony/polyfill-intl-normalizer": "~1.0",
|
||||||
"symfony/polyfill-mbstring": "~1.0",
|
"symfony/polyfill-mbstring": "~1.0"
|
||||||
"symfony/polyfill-php80": "~1.15"
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"symfony/translation-contracts": ">=3.0"
|
"symfony/translation-contracts": "<2.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"symfony/error-handler": "^4.4|^5.0|^6.0",
|
"symfony/error-handler": "^5.4|^6.0",
|
||||||
"symfony/http-client": "^4.4|^5.0|^6.0",
|
"symfony/http-client": "^5.4|^6.0",
|
||||||
"symfony/translation-contracts": "^1.1|^2",
|
"symfony/translation-contracts": "^2.0|^3.0",
|
||||||
"symfony/var-exporter": "^4.4|^5.0|^6.0"
|
"symfony/var-exporter": "^5.4|^6.0"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -6971,7 +6966,7 @@
|
|||||||
"utf8"
|
"utf8"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/string/tree/v5.4.2"
|
"source": "https://github.com/symfony/string/tree/v6.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -6987,52 +6982,50 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-16T21:52:00+00:00"
|
"time": "2022-01-02T09:55:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation",
|
"name": "symfony/translation",
|
||||||
"version": "v5.4.2",
|
"version": "v6.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/translation.git",
|
"url": "https://github.com/symfony/translation.git",
|
||||||
"reference": "ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca"
|
"reference": "71bb15335798f8c4da110911bcf2d2fead7a430d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/translation/zipball/ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca",
|
"url": "https://api.github.com/repos/symfony/translation/zipball/71bb15335798f8c4da110911bcf2d2fead7a430d",
|
||||||
"reference": "ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca",
|
"reference": "71bb15335798f8c4da110911bcf2d2fead7a430d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=8.0.2",
|
||||||
"symfony/deprecation-contracts": "^2.1|^3",
|
|
||||||
"symfony/polyfill-mbstring": "~1.0",
|
"symfony/polyfill-mbstring": "~1.0",
|
||||||
"symfony/polyfill-php80": "^1.16",
|
"symfony/translation-contracts": "^2.3|^3.0"
|
||||||
"symfony/translation-contracts": "^2.3"
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"symfony/config": "<4.4",
|
"symfony/config": "<5.4",
|
||||||
"symfony/console": "<5.3",
|
"symfony/console": "<5.4",
|
||||||
"symfony/dependency-injection": "<5.0",
|
"symfony/dependency-injection": "<5.4",
|
||||||
"symfony/http-kernel": "<5.0",
|
"symfony/http-kernel": "<5.4",
|
||||||
"symfony/twig-bundle": "<5.0",
|
"symfony/twig-bundle": "<5.4",
|
||||||
"symfony/yaml": "<4.4"
|
"symfony/yaml": "<5.4"
|
||||||
},
|
},
|
||||||
"provide": {
|
"provide": {
|
||||||
"symfony/translation-implementation": "2.3"
|
"symfony/translation-implementation": "2.3|3.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"psr/log": "^1|^2|^3",
|
"psr/log": "^1|^2|^3",
|
||||||
"symfony/config": "^4.4|^5.0|^6.0",
|
"symfony/config": "^5.4|^6.0",
|
||||||
"symfony/console": "^5.4|^6.0",
|
"symfony/console": "^5.4|^6.0",
|
||||||
"symfony/dependency-injection": "^5.0|^6.0",
|
"symfony/dependency-injection": "^5.4|^6.0",
|
||||||
"symfony/finder": "^4.4|^5.0|^6.0",
|
"symfony/finder": "^5.4|^6.0",
|
||||||
"symfony/http-client-contracts": "^1.1|^2.0|^3.0",
|
"symfony/http-client-contracts": "^1.1|^2.0|^3.0",
|
||||||
"symfony/http-kernel": "^5.0|^6.0",
|
"symfony/http-kernel": "^5.4|^6.0",
|
||||||
"symfony/intl": "^4.4|^5.0|^6.0",
|
"symfony/intl": "^5.4|^6.0",
|
||||||
"symfony/polyfill-intl-icu": "^1.21",
|
"symfony/polyfill-intl-icu": "^1.21",
|
||||||
"symfony/service-contracts": "^1.1.2|^2|^3",
|
"symfony/service-contracts": "^1.1.2|^2|^3",
|
||||||
"symfony/yaml": "^4.4|^5.0|^6.0"
|
"symfony/yaml": "^5.4|^6.0"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"psr/log-implementation": "To use logging capability in translator",
|
"psr/log-implementation": "To use logging capability in translator",
|
||||||
@ -7068,7 +7061,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/v5.4.2"
|
"source": "https://github.com/symfony/translation/tree/v6.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -7084,24 +7077,24 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-25T19:45:36+00:00"
|
"time": "2022-01-07T00:29:03+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation-contracts",
|
"name": "symfony/translation-contracts",
|
||||||
"version": "v2.5.0",
|
"version": "v3.0.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/translation-contracts.git",
|
"url": "https://github.com/symfony/translation-contracts.git",
|
||||||
"reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
|
"reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
|
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
|
||||||
"reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
|
"reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5"
|
"php": ">=8.0.2"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"symfony/translation-implementation": ""
|
"symfony/translation-implementation": ""
|
||||||
@ -7109,7 +7102,7 @@
|
|||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "2.5-dev"
|
"dev-main": "3.0-dev"
|
||||||
},
|
},
|
||||||
"thanks": {
|
"thanks": {
|
||||||
"name": "symfony/contracts",
|
"name": "symfony/contracts",
|
||||||
@ -7146,7 +7139,7 @@
|
|||||||
"standards"
|
"standards"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
|
"source": "https://github.com/symfony/translation-contracts/tree/v3.0.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -7162,20 +7155,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-08-17T14:20:01+00:00"
|
"time": "2021-09-07T12:43:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/var-dumper",
|
"name": "symfony/var-dumper",
|
||||||
"version": "v5.4.2",
|
"version": "v5.4.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/var-dumper.git",
|
"url": "https://github.com/symfony/var-dumper.git",
|
||||||
"reference": "1b56c32c3679002b3a42384a580e16e2600f41c1"
|
"reference": "970a01f208bf895c5f327ba40b72288da43adec4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/1b56c32c3679002b3a42384a580e16e2600f41c1",
|
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/970a01f208bf895c5f327ba40b72288da43adec4",
|
||||||
"reference": "1b56c32c3679002b3a42384a580e16e2600f41c1",
|
"reference": "970a01f208bf895c5f327ba40b72288da43adec4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -7235,7 +7228,7 @@
|
|||||||
"dump"
|
"dump"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/var-dumper/tree/v5.4.2"
|
"source": "https://github.com/symfony/var-dumper/tree/v5.4.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -7251,7 +7244,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-12-29T10:10:35+00:00"
|
"time": "2022-01-17T16:30:37+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "tijsverkoyen/css-to-inline-styles",
|
"name": "tijsverkoyen/css-to-inline-styles",
|
||||||
@ -10829,16 +10822,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/debug",
|
"name": "symfony/debug",
|
||||||
"version": "v4.4.36",
|
"version": "v4.4.37",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/debug.git",
|
"url": "https://github.com/symfony/debug.git",
|
||||||
"reference": "346e1507eeb3f566dcc7a116fefaa407ee84691b"
|
"reference": "5de6c6e7f52b364840e53851c126be4d71e60470"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/debug/zipball/346e1507eeb3f566dcc7a116fefaa407ee84691b",
|
"url": "https://api.github.com/repos/symfony/debug/zipball/5de6c6e7f52b364840e53851c126be4d71e60470",
|
||||||
"reference": "346e1507eeb3f566dcc7a116fefaa407ee84691b",
|
"reference": "5de6c6e7f52b364840e53851c126be4d71e60470",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -10877,7 +10870,7 @@
|
|||||||
"description": "Provides tools to ease debugging PHP code",
|
"description": "Provides tools to ease debugging PHP code",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/debug/tree/v4.4.36"
|
"source": "https://github.com/symfony/debug/tree/v4.4.37"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -10893,27 +10886,26 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-11-29T08:40:48+00:00"
|
"time": "2022-01-02T09:41:36+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/filesystem",
|
"name": "symfony/filesystem",
|
||||||
"version": "v5.4.0",
|
"version": "v6.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/filesystem.git",
|
"url": "https://github.com/symfony/filesystem.git",
|
||||||
"reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
|
"reference": "6ae49c4fda17322171a2b8dc5f70bc6edbc498e1"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
|
"url": "https://api.github.com/repos/symfony/filesystem/zipball/6ae49c4fda17322171a2b8dc5f70bc6edbc498e1",
|
||||||
"reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
|
"reference": "6ae49c4fda17322171a2b8dc5f70bc6edbc498e1",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2.5",
|
"php": ">=8.0.2",
|
||||||
"symfony/polyfill-ctype": "~1.8",
|
"symfony/polyfill-ctype": "~1.8",
|
||||||
"symfony/polyfill-mbstring": "~1.8",
|
"symfony/polyfill-mbstring": "~1.8"
|
||||||
"symfony/polyfill-php80": "^1.16"
|
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -10941,7 +10933,7 @@
|
|||||||
"description": "Provides basic utilities for the filesystem",
|
"description": "Provides basic utilities for the filesystem",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/filesystem/tree/v5.4.0"
|
"source": "https://github.com/symfony/filesystem/tree/v6.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -10957,7 +10949,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-10-28T13:39:27+00:00"
|
"time": "2022-01-02T09:55:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "theseer/tokenizer",
|
"name": "theseer/tokenizer",
|
||||||
|
@ -101,7 +101,7 @@ return [
|
|||||||
'webhooks' => true,
|
'webhooks' => true,
|
||||||
'handle_debts' => true,
|
'handle_debts' => true,
|
||||||
],
|
],
|
||||||
'version' => '5.6.10',
|
'version' => '5.6.11',
|
||||||
'api_version' => '1.5.5',
|
'api_version' => '1.5.5',
|
||||||
'db_version' => 18,
|
'db_version' => 18,
|
||||||
|
|
||||||
|
2
public/v1/js/app_vue.js
vendored
2
public/v1/js/app_vue.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/profile.js
vendored
2
public/v1/js/profile.js
vendored
File diff suppressed because one or more lines are too long
@ -9,7 +9,7 @@
|
|||||||
"split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438",
|
"split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438",
|
||||||
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b",
|
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b",
|
||||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}(\"{title}\")<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.",
|
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}(\"{title}\")<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.",
|
||||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> (\"{title}\") has been updated.",
|
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}<\/a> (\"{title}\") \u0431\u0435\u0448\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430.",
|
||||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.",
|
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.",
|
||||||
"transaction_journal_information": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
|
"transaction_journal_information": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
|
||||||
"no_budget_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"budgets\"> \u0411\u044e\u0434\u0436\u0435\u0442\u0438 <\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
"no_budget_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"budgets\"> \u0411\u044e\u0434\u0436\u0435\u0442\u0438 <\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Kategorie",
|
"category": "Kategorie",
|
||||||
"attachments": "P\u0159\u00edlohy",
|
"attachments": "P\u0159\u00edlohy",
|
||||||
"notes": "Pozn\u00e1mky",
|
"notes": "Pozn\u00e1mky",
|
||||||
"external_url": "Extern\u00ed URL adresa",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Aktualizovat transakci",
|
"update_transaction": "Aktualizovat transakci",
|
||||||
"after_update_create_another": "After updating, return here to continue editing.",
|
"after_update_create_another": "After updating, return here to continue editing.",
|
||||||
"store_as_new": "Store as a new transaction instead of updating.",
|
"store_as_new": "Store as a new transaction instead of updating.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Kategorie",
|
"category": "Kategorie",
|
||||||
"attachments": "Anh\u00e4nge",
|
"attachments": "Anh\u00e4nge",
|
||||||
"notes": "Notizen",
|
"notes": "Notizen",
|
||||||
"external_url": "Externe URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Buchung aktualisieren",
|
"update_transaction": "Buchung aktualisieren",
|
||||||
"after_update_create_another": "Nach dem Aktualisieren hierher zur\u00fcckkehren, um weiter zu bearbeiten.",
|
"after_update_create_another": "Nach dem Aktualisieren hierher zur\u00fcckkehren, um weiter zu bearbeiten.",
|
||||||
"store_as_new": "Als neue Buchung speichern statt zu aktualisieren.",
|
"store_as_new": "Als neue Buchung speichern statt zu aktualisieren.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
|
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
|
||||||
"attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
|
"attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
|
||||||
"notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
|
"notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
|
||||||
"external_url": "\u0395\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
"update_transaction": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||||
"after_update_create_another": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7, \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1.",
|
"after_update_create_another": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7, \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1.",
|
||||||
"store_as_new": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c9\u03c2 \u03bd\u03ad\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b1\u03bd\u03c4\u03af \u03b3\u03b9\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7.",
|
"store_as_new": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c9\u03c2 \u03bd\u03ad\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b1\u03bd\u03c4\u03af \u03b3\u03b9\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Archivos adjuntos",
|
"attachments": "Archivos adjuntos",
|
||||||
"notes": "Notas",
|
"notes": "Notas",
|
||||||
"external_url": "URL externa",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Actualizar transacci\u00f3n",
|
"update_transaction": "Actualizar transacci\u00f3n",
|
||||||
"after_update_create_another": "Despu\u00e9s de actualizar, vuelve aqu\u00ed para continuar editando.",
|
"after_update_create_another": "Despu\u00e9s de actualizar, vuelve aqu\u00ed para continuar editando.",
|
||||||
"store_as_new": "Almacenar como una nueva transacci\u00f3n en lugar de actualizar.",
|
"store_as_new": "Almacenar como una nueva transacci\u00f3n en lugar de actualizar.",
|
||||||
|
@ -5,17 +5,17 @@
|
|||||||
"flash_success": "Valmista tuli!",
|
"flash_success": "Valmista tuli!",
|
||||||
"close": "Sulje",
|
"close": "Sulje",
|
||||||
"split_transaction_title": "Jaetun tapahtuman kuvaus",
|
"split_transaction_title": "Jaetun tapahtuman kuvaus",
|
||||||
"errors_submission": "There was something wrong with your submission. Please check out the errors.",
|
"errors_submission": "Lomakkeen tiedoissa oli jotain vikaa. Ole hyv\u00e4 ja tarkista virheet.",
|
||||||
"split": "Jaa",
|
"split": "Jaa",
|
||||||
"single_split": "Jako",
|
"single_split": "Jako",
|
||||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Tapahtuma #{ID} (\"{title}\")<\/a> on tallennettu.",
|
||||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> (\"{title}\") has been updated.",
|
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Tapahtuma #{ID}<\/a> (\"{title}\") on p\u00e4ivitetty.",
|
||||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Tapahtuma #{ID}<\/a> on tallennettu.",
|
||||||
"transaction_journal_information": "Tapahtumatiedot",
|
"transaction_journal_information": "Tapahtumatiedot",
|
||||||
"no_budget_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 budjetteja. Sinun pit\u00e4isi luoda joitakin <a href=\"budgets\">budjetit<\/a>-sivulla. Budjetit auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
"no_budget_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 budjetteja. Sinun pit\u00e4isi luoda joitakin <a href=\"budgets\">budjetit<\/a>-sivulla. Budjetit auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
||||||
"no_bill_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 laskuja. Sinun pit\u00e4isi luoda joitakin <a href=\"bills\">laskut<\/a>-sivulla. Laskut auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
"no_bill_pointer": "Sinulla ei n\u00e4yt\u00e4 olevan viel\u00e4 laskuja. Sinun pit\u00e4isi luoda joitakin <a href=\"bills\">laskut<\/a>-sivulla. Laskut auttavat sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluista.",
|
||||||
"source_account": "L\u00e4hdetili",
|
"source_account": "L\u00e4hdetili",
|
||||||
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
|
"hidden_fields_preferences": "Voit ottaa k\u00e4ytt\u00f6\u00f6n lis\u00e4\u00e4 tapahtumavalintoja <a href=\"preferences\">asetuksissa<\/a>.",
|
||||||
"destination_account": "Kohdetili",
|
"destination_account": "Kohdetili",
|
||||||
"add_another_split": "Lis\u00e4\u00e4 tapahtumaan uusi osa",
|
"add_another_split": "Lis\u00e4\u00e4 tapahtumaan uusi osa",
|
||||||
"submission": "Vahvistus",
|
"submission": "Vahvistus",
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"category": "Kategoria",
|
"category": "Kategoria",
|
||||||
"attachments": "Liitteet",
|
"attachments": "Liitteet",
|
||||||
"notes": "Muistiinpanot",
|
"notes": "Muistiinpanot",
|
||||||
"external_url": "Ulkoinen URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "P\u00e4ivit\u00e4 tapahtuma",
|
"update_transaction": "P\u00e4ivit\u00e4 tapahtuma",
|
||||||
"after_update_create_another": "P\u00e4ivityksen j\u00e4lkeen, palaa takaisin jatkamaan muokkausta.",
|
"after_update_create_another": "P\u00e4ivityksen j\u00e4lkeen, palaa takaisin jatkamaan muokkausta.",
|
||||||
"store_as_new": "Tallenna uutena tapahtumana p\u00e4ivityksen sijaan.",
|
"store_as_new": "Tallenna uutena tapahtumana p\u00e4ivityksen sijaan.",
|
||||||
@ -63,10 +63,10 @@
|
|||||||
"profile_oauth_edit_client": "Muokkaa asiakasta",
|
"profile_oauth_edit_client": "Muokkaa asiakasta",
|
||||||
"profile_oauth_name_help": "Jotain k\u00e4ytt\u00e4jillesi tuttua ja luotettavaa.",
|
"profile_oauth_name_help": "Jotain k\u00e4ytt\u00e4jillesi tuttua ja luotettavaa.",
|
||||||
"profile_oauth_redirect_url": "URL:n uudelleenohjaus",
|
"profile_oauth_redirect_url": "URL:n uudelleenohjaus",
|
||||||
"profile_oauth_redirect_url_help": "Your application's authorization callback URL.",
|
"profile_oauth_redirect_url_help": "Sovelluksesi valtuutuksen callback URL.",
|
||||||
"profile_authorized_apps": "Valtuutetut sovellukset",
|
"profile_authorized_apps": "Valtuutetut sovellukset",
|
||||||
"profile_authorized_clients": "Valtuutetut asiakkaat",
|
"profile_authorized_clients": "Valtuutetut asiakkaat",
|
||||||
"profile_scopes": "Scopes",
|
"profile_scopes": "Aihepiirit",
|
||||||
"profile_revoke": "Peruuta",
|
"profile_revoke": "Peruuta",
|
||||||
"profile_personal_access_tokens": "Henkil\u00f6kohtaiset K\u00e4ytt\u00f6oikeuskoodit",
|
"profile_personal_access_tokens": "Henkil\u00f6kohtaiset K\u00e4ytt\u00f6oikeuskoodit",
|
||||||
"profile_personal_access_token": "Henkil\u00f6kohtainen K\u00e4ytt\u00f6oikeuskoodi",
|
"profile_personal_access_token": "Henkil\u00f6kohtainen K\u00e4ytt\u00f6oikeuskoodi",
|
||||||
@ -78,10 +78,10 @@
|
|||||||
"profile_save_changes": "Tallenna muutokset",
|
"profile_save_changes": "Tallenna muutokset",
|
||||||
"default_group_title_name": "(ryhmittelem\u00e4tt\u00f6m\u00e4t)",
|
"default_group_title_name": "(ryhmittelem\u00e4tt\u00f6m\u00e4t)",
|
||||||
"piggy_bank": "S\u00e4\u00e4st\u00f6possu",
|
"piggy_bank": "S\u00e4\u00e4st\u00f6possu",
|
||||||
"profile_oauth_client_secret_title": "Client Secret",
|
"profile_oauth_client_secret_title": "Asiakkaan salausavain (Client secret)",
|
||||||
"profile_oauth_client_secret_expl": "Here is your new client secret. This is the only time it will be shown so don't lose it! You may now use this secret to make API requests.",
|
"profile_oauth_client_secret_expl": "T\u00e4ss\u00e4 on uusi asiakkaan salausavaimesi. T\u00e4m\u00e4 on ainoa kerta kun se n\u00e4ytet\u00e4\u00e4n, joten \u00e4l\u00e4 hukkaa sit\u00e4! Voit nyt k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 avainta tehd\u00e4ksesi API komentoja.",
|
||||||
"profile_oauth_confidential": "Luottamuksellinen",
|
"profile_oauth_confidential": "Luottamuksellinen",
|
||||||
"profile_oauth_confidential_help": "Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.",
|
"profile_oauth_confidential_help": "Vaadi asiakasta tunnistautumaan salausavaimella. Luotettavat asiakkaat pystyv\u00e4t yll\u00e4pit\u00e4m\u00e4\u00e4n k\u00e4ytt\u00e4j\u00e4tunnuksia turvallisella tavalla paljastamatta niit\u00e4 luvattomille osapuolille. Julkiset sovellukset, kuten natiivi ty\u00f6p\u00f6yt\u00e4 tai JavaScript SPA sovellukset, eiv\u00e4t pysty pit\u00e4m\u00e4\u00e4n salausavaimia tietoturvallisesti.",
|
||||||
"multi_account_warning_unknown": "Riippuen luomasi tapahtuman tyypist\u00e4, my\u00f6hempien jaotteluiden l\u00e4hde- ja\/tai kohdetilin tyyppi voidaan kumota sen mukaan, mit\u00e4 on m\u00e4\u00e4ritelty tapahtuman ensimm\u00e4isess\u00e4 jaossa.",
|
"multi_account_warning_unknown": "Riippuen luomasi tapahtuman tyypist\u00e4, my\u00f6hempien jaotteluiden l\u00e4hde- ja\/tai kohdetilin tyyppi voidaan kumota sen mukaan, mit\u00e4 on m\u00e4\u00e4ritelty tapahtuman ensimm\u00e4isess\u00e4 jaossa.",
|
||||||
"multi_account_warning_withdrawal": "Muista, ett\u00e4 my\u00f6hempien jakojen l\u00e4hdetili m\u00e4\u00e4r\u00e4ytyy noston ensimm\u00e4isen jaon m\u00e4\u00e4ritysten mukaan.",
|
"multi_account_warning_withdrawal": "Muista, ett\u00e4 my\u00f6hempien jakojen l\u00e4hdetili m\u00e4\u00e4r\u00e4ytyy noston ensimm\u00e4isen jaon m\u00e4\u00e4ritysten mukaan.",
|
||||||
"multi_account_warning_deposit": "Muista, ett\u00e4 my\u00f6hempien jakojen kohdetili m\u00e4\u00e4r\u00e4ytyy talletuksen ensimm\u00e4isen jaon m\u00e4\u00e4ritysten mukaan.",
|
"multi_account_warning_deposit": "Muista, ett\u00e4 my\u00f6hempien jakojen kohdetili m\u00e4\u00e4r\u00e4ytyy talletuksen ensimm\u00e4isen jaon m\u00e4\u00e4ritysten mukaan.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Cat\u00e9gorie",
|
"category": "Cat\u00e9gorie",
|
||||||
"attachments": "Pi\u00e8ces jointes",
|
"attachments": "Pi\u00e8ces jointes",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
"external_url": "URL externe",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Mettre \u00e0 jour l'op\u00e9ration",
|
"update_transaction": "Mettre \u00e0 jour l'op\u00e9ration",
|
||||||
"after_update_create_another": "Apr\u00e8s la mise \u00e0 jour, revenir ici pour continuer l'\u00e9dition.",
|
"after_update_create_another": "Apr\u00e8s la mise \u00e0 jour, revenir ici pour continuer l'\u00e9dition.",
|
||||||
"store_as_new": "Enregistrer comme une nouvelle op\u00e9ration au lieu de mettre \u00e0 jour.",
|
"store_as_new": "Enregistrer comme une nouvelle op\u00e9ration au lieu de mettre \u00e0 jour.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Allegati",
|
"attachments": "Allegati",
|
||||||
"notes": "Note",
|
"notes": "Note",
|
||||||
"external_url": "URL esterno",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Aggiorna transazione",
|
"update_transaction": "Aggiorna transazione",
|
||||||
"after_update_create_another": "Dopo l'aggiornamento, torna qui per continuare la modifica.",
|
"after_update_create_another": "Dopo l'aggiornamento, torna qui per continuare la modifica.",
|
||||||
"store_as_new": "Salva come nuova transazione invece di aggiornarla.",
|
"store_as_new": "Salva come nuova transazione invece di aggiornarla.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "\u30ab\u30c6\u30b4\u30ea",
|
"category": "\u30ab\u30c6\u30b4\u30ea",
|
||||||
"attachments": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb",
|
"attachments": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb",
|
||||||
"notes": "\u5099\u8003",
|
"notes": "\u5099\u8003",
|
||||||
"external_url": "\u5916\u90e8 URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "\u30c1\u30e3\u30f3\u30cd\u30eb\u3092\u66f4\u65b0",
|
"update_transaction": "\u30c1\u30e3\u30f3\u30cd\u30eb\u3092\u66f4\u65b0",
|
||||||
"after_update_create_another": "\u4fdd\u5b58\u5f8c\u3001\u3053\u3053\u3078\u623b\u3063\u3066\u304d\u3066\u304f\u3060\u3055\u3044\u3002",
|
"after_update_create_another": "\u4fdd\u5b58\u5f8c\u3001\u3053\u3053\u3078\u623b\u3063\u3066\u304d\u3066\u304f\u3060\u3055\u3044\u3002",
|
||||||
"store_as_new": "\u65b0\u3057\u3044\u53d6\u5f15\u3092\u4fdd\u5b58",
|
"store_as_new": "\u65b0\u3057\u3044\u53d6\u5f15\u3092\u4fdd\u5b58",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Categorie",
|
"category": "Categorie",
|
||||||
"attachments": "Bijlagen",
|
"attachments": "Bijlagen",
|
||||||
"notes": "Notities",
|
"notes": "Notities",
|
||||||
"external_url": "Externe URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Update transactie",
|
"update_transaction": "Update transactie",
|
||||||
"after_update_create_another": "Na het opslaan terug om door te gaan met wijzigen.",
|
"after_update_create_another": "Na het opslaan terug om door te gaan met wijzigen.",
|
||||||
"store_as_new": "Opslaan als nieuwe transactie ipv de huidige bij te werken.",
|
"store_as_new": "Opslaan als nieuwe transactie ipv de huidige bij te werken.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Kategoria",
|
"category": "Kategoria",
|
||||||
"attachments": "Za\u0142\u0105czniki",
|
"attachments": "Za\u0142\u0105czniki",
|
||||||
"notes": "Notatki",
|
"notes": "Notatki",
|
||||||
"external_url": "Zewn\u0119trzny adres URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Zaktualizuj transakcj\u0119",
|
"update_transaction": "Zaktualizuj transakcj\u0119",
|
||||||
"after_update_create_another": "Po aktualizacji wr\u00f3\u0107 tutaj, aby kontynuowa\u0107 edycj\u0119.",
|
"after_update_create_another": "Po aktualizacji wr\u00f3\u0107 tutaj, aby kontynuowa\u0107 edycj\u0119.",
|
||||||
"store_as_new": "Zapisz jako now\u0105 zamiast aktualizowa\u0107.",
|
"store_as_new": "Zapisz jako now\u0105 zamiast aktualizowa\u0107.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Anexos",
|
"attachments": "Anexos",
|
||||||
"notes": "Notas",
|
"notes": "Notas",
|
||||||
"external_url": "URL externa",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Atualizar transa\u00e7\u00e3o",
|
"update_transaction": "Atualizar transa\u00e7\u00e3o",
|
||||||
"after_update_create_another": "Depois de atualizar, retorne aqui para continuar editando.",
|
"after_update_create_another": "Depois de atualizar, retorne aqui para continuar editando.",
|
||||||
"store_as_new": "Armazene como uma nova transa\u00e7\u00e3o em vez de atualizar.",
|
"store_as_new": "Armazene como uma nova transa\u00e7\u00e3o em vez de atualizar.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Categoria",
|
"category": "Categoria",
|
||||||
"attachments": "Anexos",
|
"attachments": "Anexos",
|
||||||
"notes": "Notas",
|
"notes": "Notas",
|
||||||
"external_url": "URL Externo",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Actualizar transac\u00e7\u00e3o",
|
"update_transaction": "Actualizar transac\u00e7\u00e3o",
|
||||||
"after_update_create_another": "Ap\u00f3s a atualiza\u00e7\u00e3o, regresse aqui para continuar a editar.",
|
"after_update_create_another": "Ap\u00f3s a atualiza\u00e7\u00e3o, regresse aqui para continuar a editar.",
|
||||||
"store_as_new": "Guarde como uma nova transa\u00e7\u00e3o em vez de atualizar.",
|
"store_as_new": "Guarde como uma nova transa\u00e7\u00e3o em vez de atualizar.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Categorie",
|
"category": "Categorie",
|
||||||
"attachments": "Ata\u0219amente",
|
"attachments": "Ata\u0219amente",
|
||||||
"notes": "Noti\u021be",
|
"notes": "Noti\u021be",
|
||||||
"external_url": "URL extern",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Actualiza\u021bi tranzac\u021bia",
|
"update_transaction": "Actualiza\u021bi tranzac\u021bia",
|
||||||
"after_update_create_another": "Dup\u0103 actualizare, reveni\u021bi aici pentru a continua editarea.",
|
"after_update_create_another": "Dup\u0103 actualizare, reveni\u021bi aici pentru a continua editarea.",
|
||||||
"store_as_new": "Stoca\u021bi ca o tranzac\u021bie nou\u0103 \u00een loc s\u0103 actualiza\u021bi.",
|
"store_as_new": "Stoca\u021bi ca o tranzac\u021bie nou\u0103 \u00een loc s\u0103 actualiza\u021bi.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
||||||
"attachments": "\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"attachments": "\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438",
|
"notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438",
|
||||||
"external_url": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 URL-\u0430\u0434\u0440\u0435\u0441",
|
"external_url": "External URL",
|
||||||
"update_transaction": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e",
|
"update_transaction": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e",
|
||||||
"after_update_create_another": "\u041f\u043e\u0441\u043b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435.",
|
"after_update_create_another": "\u041f\u043e\u0441\u043b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435.",
|
||||||
"store_as_new": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a \u043d\u043e\u0432\u0443\u044e \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432\u043c\u0435\u0441\u0442\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f.",
|
"store_as_new": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a \u043d\u043e\u0432\u0443\u044e \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432\u043c\u0435\u0441\u0442\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Kateg\u00f3ria",
|
"category": "Kateg\u00f3ria",
|
||||||
"attachments": "Pr\u00edlohy",
|
"attachments": "Pr\u00edlohy",
|
||||||
"notes": "Pozn\u00e1mky",
|
"notes": "Pozn\u00e1mky",
|
||||||
"external_url": "Extern\u00e1 URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Upravi\u0165 transakciu",
|
"update_transaction": "Upravi\u0165 transakciu",
|
||||||
"after_update_create_another": "Po aktualiz\u00e1cii sa vr\u00e1ti\u0165 sp\u00e4\u0165 a pokra\u010dova\u0165 v \u00faprav\u00e1ch.",
|
"after_update_create_another": "Po aktualiz\u00e1cii sa vr\u00e1ti\u0165 sp\u00e4\u0165 a pokra\u010dova\u0165 v \u00faprav\u00e1ch.",
|
||||||
"store_as_new": "Namiesto aktualiz\u00e1cie ulo\u017ei\u0165 ako nov\u00fa transakciu.",
|
"store_as_new": "Namiesto aktualiz\u00e1cie ulo\u017ei\u0165 ako nov\u00fa transakciu.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Kategori",
|
"category": "Kategori",
|
||||||
"attachments": "Bilagor",
|
"attachments": "Bilagor",
|
||||||
"notes": "Noteringar",
|
"notes": "Noteringar",
|
||||||
"external_url": "Extern URL",
|
"external_url": "External URL",
|
||||||
"update_transaction": "Uppdatera transaktion",
|
"update_transaction": "Uppdatera transaktion",
|
||||||
"after_update_create_another": "Efter uppdaterat, \u00e5terkom hit f\u00f6r att forts\u00e4tta redigera.",
|
"after_update_create_another": "Efter uppdaterat, \u00e5terkom hit f\u00f6r att forts\u00e4tta redigera.",
|
||||||
"store_as_new": "Spara en ny transaktion ist\u00e4llet f\u00f6r att uppdatera.",
|
"store_as_new": "Spara en ny transaktion ist\u00e4llet f\u00f6r att uppdatera.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "Danh m\u1ee5c",
|
"category": "Danh m\u1ee5c",
|
||||||
"attachments": "T\u1ec7p \u0111\u00ednh k\u00e8m",
|
"attachments": "T\u1ec7p \u0111\u00ednh k\u00e8m",
|
||||||
"notes": "Ghi ch\u00fa",
|
"notes": "Ghi ch\u00fa",
|
||||||
"external_url": "URL b\u00ean ngo\u00e0i",
|
"external_url": "External URL",
|
||||||
"update_transaction": "C\u1eadp nh\u1eadt giao d\u1ecbch",
|
"update_transaction": "C\u1eadp nh\u1eadt giao d\u1ecbch",
|
||||||
"after_update_create_another": "Sau khi c\u1eadp nh\u1eadt, quay l\u1ea1i \u0111\u00e2y \u0111\u1ec3 ti\u1ebfp t\u1ee5c ch\u1ec9nh s\u1eeda.",
|
"after_update_create_another": "Sau khi c\u1eadp nh\u1eadt, quay l\u1ea1i \u0111\u00e2y \u0111\u1ec3 ti\u1ebfp t\u1ee5c ch\u1ec9nh s\u1eeda.",
|
||||||
"store_as_new": "L\u01b0u tr\u1eef nh\u01b0 m\u1ed9t giao d\u1ecbch m\u1edbi thay v\u00ec c\u1eadp nh\u1eadt.",
|
"store_as_new": "L\u01b0u tr\u1eef nh\u01b0 m\u1ed9t giao d\u1ecbch m\u1edbi thay v\u00ec c\u1eadp nh\u1eadt.",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"category": "\u5206\u7c7b",
|
"category": "\u5206\u7c7b",
|
||||||
"attachments": "\u9644\u4ef6",
|
"attachments": "\u9644\u4ef6",
|
||||||
"notes": "\u5907\u6ce8",
|
"notes": "\u5907\u6ce8",
|
||||||
"external_url": "\u5916\u90e8\u94fe\u63a5",
|
"external_url": "External URL",
|
||||||
"update_transaction": "\u66f4\u65b0\u4ea4\u6613",
|
"update_transaction": "\u66f4\u65b0\u4ea4\u6613",
|
||||||
"after_update_create_another": "\u66f4\u65b0\u540e\uff0c\u8fd4\u56de\u6b64\u9875\u9762\u7ee7\u7eed\u7f16\u8f91\u3002",
|
"after_update_create_another": "\u66f4\u65b0\u540e\uff0c\u8fd4\u56de\u6b64\u9875\u9762\u7ee7\u7eed\u7f16\u8f91\u3002",
|
||||||
"store_as_new": "\u4fdd\u5b58\u4e3a\u65b0\u4ea4\u6613\u800c\u4e0d\u662f\u66f4\u65b0\u6b64\u4ea4\u6613\u3002",
|
"store_as_new": "\u4fdd\u5b58\u4e3a\u65b0\u4ea4\u6613\u800c\u4e0d\u662f\u66f4\u65b0\u6b64\u4ea4\u6613\u3002",
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Начало',
|
'home' => 'Начало',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Редактирай валута ":name"',
|
'edit_currency' => 'Редактирай валута ":name"',
|
||||||
'delete_currency' => 'Изтрий валута ":name"',
|
'delete_currency' => 'Изтрий валута ":name"',
|
||||||
'newPiggyBank' => 'Създай нова касичка',
|
'newPiggyBank' => 'Създай нова касичка',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Изтрий връзката между трансакциите',
|
'delete_journal_link' => 'Изтрий връзката между трансакциите',
|
||||||
'edit_object_group' => 'Редактирай група ":title"',
|
'edit_object_group' => 'Редактирай група ":title"',
|
||||||
'delete_object_group' => 'Изтрии група ":title"',
|
'delete_object_group' => 'Изтрии група ":title"',
|
||||||
'logout_others' => 'Изход от другите сесии',
|
'logout_others' => 'Изход от другите сесии'
|
||||||
];
|
];
|
||||||
|
@ -47,8 +47,8 @@ return [
|
|||||||
'tell_more' => 'Разкажете ни повече от „казва Опаааа!“',
|
'tell_more' => 'Разкажете ни повече от „казва Опаааа!“',
|
||||||
'include_logs' => 'Включете регистрационни файлове за грешки (вижте по-горе).',
|
'include_logs' => 'Включете регистрационни файлове за грешки (вижте по-горе).',
|
||||||
'what_did_you_do' => 'Кажете ни какво правихте.',
|
'what_did_you_do' => 'Кажете ни какво правихте.',
|
||||||
'offline_header' => 'You are probably offline',
|
'offline_header' => 'Вие вероятно не сте на линия',
|
||||||
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
|
'offline_unreachable' => 'Firefly III е недостижим. Устройството Ви в момента не е на линия или сървърът не работи.',
|
||||||
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
|
'offline_github' => 'Ако сте сигурни, че Вашето устройство и сървъра са на линия, моля отворете билет на <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -39,7 +39,7 @@ return [
|
|||||||
'everything' => 'Всичко',
|
'everything' => 'Всичко',
|
||||||
'today' => 'Днес',
|
'today' => 'Днес',
|
||||||
'customRange' => 'Потребителски диапазон',
|
'customRange' => 'Потребителски диапазон',
|
||||||
'date_range' => 'Date range',
|
'date_range' => 'Период',
|
||||||
'apply' => 'Приложи',
|
'apply' => 'Приложи',
|
||||||
'select_date' => 'Изберете дата..',
|
'select_date' => 'Изберете дата..',
|
||||||
'cancel' => 'Отказ',
|
'cancel' => 'Отказ',
|
||||||
@ -56,7 +56,7 @@ return [
|
|||||||
'Opening balance' => 'Начално салдо',
|
'Opening balance' => 'Начално салдо',
|
||||||
'create_new_stuff' => 'Създайте нови неща',
|
'create_new_stuff' => 'Създайте нови неща',
|
||||||
'new_withdrawal' => 'Ново теглене',
|
'new_withdrawal' => 'Ново теглене',
|
||||||
'create_new_transaction' => 'Create a new transaction',
|
'create_new_transaction' => 'Създай нова трансакция',
|
||||||
'sidebar_frontpage_create' => 'Създай',
|
'sidebar_frontpage_create' => 'Създай',
|
||||||
'new_transaction' => 'Нова транзакция',
|
'new_transaction' => 'Нова транзакция',
|
||||||
'no_rules_for_bill' => 'С тази сметка няма свързани правила.',
|
'no_rules_for_bill' => 'С тази сметка няма свързани правила.',
|
||||||
@ -83,7 +83,7 @@ return [
|
|||||||
'flash_info' => 'Съобщение',
|
'flash_info' => 'Съобщение',
|
||||||
'flash_warning' => 'Внимание!',
|
'flash_warning' => 'Внимание!',
|
||||||
'flash_error' => 'Грешка!',
|
'flash_error' => 'Грешка!',
|
||||||
'flash_danger' => 'Danger!',
|
'flash_danger' => 'Опасност!',
|
||||||
'flash_info_multiple' => 'Има ново съобщение| Има :count нови съобщения',
|
'flash_info_multiple' => 'Има ново съобщение| Има :count нови съобщения',
|
||||||
'flash_error_multiple' => 'Има нова грешка| Има :count нови грешки',
|
'flash_error_multiple' => 'Има нова грешка| Има :count нови грешки',
|
||||||
'net_worth' => 'Нетна стойност',
|
'net_worth' => 'Нетна стойност',
|
||||||
@ -232,7 +232,7 @@ return [
|
|||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version заявка за потвърждение',
|
'authorization_request' => 'Firefly III v:version заявка за потвърждение',
|
||||||
'authorization_request_intro' => 'Application "<strong>:client</strong>" is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
'authorization_request_intro' => 'Апликацията "<strong>:client</strong>" иска разрешение за достъп до вашето финансово управление. Искате ли да упълномощите <strong>:client</strong> за достъп до тези записи?',
|
||||||
'authorization_request_site' => 'You will be redirected to <code>:url</code> which will then be able to access your Firefly III data.',
|
'authorization_request_site' => 'You will be redirected to <code>:url</code> which will then be able to access your Firefly III data.',
|
||||||
'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.',
|
'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.',
|
||||||
'scopes_will_be_able' => 'Това приложение ще има право да:',
|
'scopes_will_be_able' => 'Това приложение ще има право да:',
|
||||||
@ -248,8 +248,8 @@ return [
|
|||||||
'all_source_accounts' => 'Разходни сметки',
|
'all_source_accounts' => 'Разходни сметки',
|
||||||
'back_to_index' => 'Обратно към списъка',
|
'back_to_index' => 'Обратно към списъка',
|
||||||
'cant_logout_guard' => 'Firefly III не може да ви отпише.',
|
'cant_logout_guard' => 'Firefly III не може да ви отпише.',
|
||||||
'external_url' => 'External URL',
|
'external_url' => 'Външен URL адрес',
|
||||||
'internal_reference' => 'Internal reference',
|
'internal_reference' => 'Вътрешна референция',
|
||||||
|
|
||||||
// check for updates:
|
// check for updates:
|
||||||
'update_check_title' => 'Проверка за обновления',
|
'update_check_title' => 'Проверка за обновления',
|
||||||
@ -283,14 +283,16 @@ return [
|
|||||||
'search_found_transactions' => 'Firefly III намери :count транзакция за :time секунди.|Firefly III намери :count транзакции за :time секунди.',
|
'search_found_transactions' => 'Firefly III намери :count транзакция за :time секунди.|Firefly III намери :count транзакции за :time секунди.',
|
||||||
'search_found_more_transactions' => 'Firefly III намери повече от :count транзакции за :time секунди.',
|
'search_found_more_transactions' => 'Firefly III намери повече от :count транзакции за :time секунди.',
|
||||||
'search_for_query' => 'Firefly III търси за транзакции с всички от следните думи в тях:<span class="text-info">:query</span>',
|
'search_for_query' => 'Firefly III търси за транзакции с всички от следните думи в тях:<span class="text-info">:query</span>',
|
||||||
'invalid_operators_list' => 'These search parameters are not valid and have been ignored.',
|
'invalid_operators_list' => 'Дадените параметрите за търсене не са валидни и ще бъдат пренебрегнати.',
|
||||||
'search_modifier_date_is' => 'Датата на транзакцията е ":value"',
|
'search_modifier_date_is' => 'Датата на транзакцията е ":value"',
|
||||||
'search_modifier_id' => 'Transaction ID is ":value"',
|
'search_modifier_id' => 'Индентификатор на транзакцията е ":value"',
|
||||||
'search_modifier_date_before' => 'Датата на транзакцията е преди или на ":value"',
|
'search_modifier_date_before' => 'Датата на транзакцията е преди или на ":value"',
|
||||||
'search_modifier_date_after' => 'Датата на транзакцията е след или на ":value"',
|
'search_modifier_date_after' => 'Датата на транзакцията е след или на ":value"',
|
||||||
'search_modifier_created_on' => 'Транзакцията е създадена на ":value"',
|
'search_modifier_created_on' => 'Транзакцията е създадена на ":value"',
|
||||||
'search_modifier_updated_on' => 'Транзакцията е последно обновена на ":value"',
|
'search_modifier_updated_on' => 'Транзакцията е последно обновена на ":value"',
|
||||||
'search_modifier_external_id' => 'Външното ID е ":value"',
|
'search_modifier_external_id' => 'Външното ID е ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Вътрешната референция е ":value"',
|
'search_modifier_internal_reference' => 'Вътрешната референция е ":value"',
|
||||||
'search_modifier_description_starts' => 'Описанието е ":value"',
|
'search_modifier_description_starts' => 'Описанието е ":value"',
|
||||||
'search_modifier_description_ends' => 'Описанието завършва с ":value"',
|
'search_modifier_description_ends' => 'Описанието завършва с ":value"',
|
||||||
@ -303,8 +305,8 @@ return [
|
|||||||
'search_modifier_has_any_category' => 'Транзакцията трябва да има (някаква) категория',
|
'search_modifier_has_any_category' => 'Транзакцията трябва да има (някаква) категория',
|
||||||
'search_modifier_has_no_budget' => 'Транзакцията трябва да няма бюджет',
|
'search_modifier_has_no_budget' => 'Транзакцията трябва да няма бюджет',
|
||||||
'search_modifier_has_any_budget' => 'Транзакцията трябва да има (някакъв) бюджет',
|
'search_modifier_has_any_budget' => 'Транзакцията трябва да има (някакъв) бюджет',
|
||||||
'search_modifier_has_no_bill' => 'The transaction must have no bill',
|
'search_modifier_has_no_bill' => 'Транзакцията трябва да няма сметка',
|
||||||
'search_modifier_has_any_bill' => 'The transaction must have a (any) bill',
|
'search_modifier_has_any_bill' => 'Транзакцията трябва да има (някаква) сметка',
|
||||||
'search_modifier_has_no_tag' => 'Транзакцията трябва да няма етикет',
|
'search_modifier_has_no_tag' => 'Транзакцията трябва да няма етикет',
|
||||||
'search_modifier_has_any_tag' => 'Транзакцията трябва да има (някакъв) етикет',
|
'search_modifier_has_any_tag' => 'Транзакцията трябва да има (някакъв) етикет',
|
||||||
'search_modifier_notes_contain' => 'Бележките към транзакцията съдържа ":value"',
|
'search_modifier_notes_contain' => 'Бележките към транзакцията съдържа ":value"',
|
||||||
@ -342,15 +344,15 @@ return [
|
|||||||
'search_modifier_bill_is' => 'Сметката е ":value"',
|
'search_modifier_bill_is' => 'Сметката е ":value"',
|
||||||
'search_modifier_transaction_type' => 'Видът на транзакцията е ":value"',
|
'search_modifier_transaction_type' => 'Видът на транзакцията е ":value"',
|
||||||
'search_modifier_tag_is' => 'Етикетът е ":value"',
|
'search_modifier_tag_is' => 'Етикетът е ":value"',
|
||||||
'search_modifier_date_is_year' => 'Transaction is in year ":value"',
|
'search_modifier_date_is_year' => 'Транзацията е през ":value" година',
|
||||||
'search_modifier_date_is_month' => 'Transaction is in month ":value"',
|
'search_modifier_date_is_month' => 'Транзацията е през ":value" месец',
|
||||||
'search_modifier_date_is_day' => 'Transaction is on day of month ":value"',
|
'search_modifier_date_is_day' => 'Транзацията е на ":value" число от месеца',
|
||||||
'search_modifier_date_before_year' => 'Transaction is before or in year ":value"',
|
'search_modifier_date_before_year' => 'Транзацията е преди или през ":value" година',
|
||||||
'search_modifier_date_before_month' => 'Transaction is before or in month ":value"',
|
'search_modifier_date_before_month' => 'Транзацията е преди или през ":value" месец',
|
||||||
'search_modifier_date_before_day' => 'Transaction before or on day of month ":value"',
|
'search_modifier_date_before_day' => 'Транзацията е преди или на ":value" число от месеца',
|
||||||
'search_modifier_date_after_year' => 'Transaction is in or after year ":value"',
|
'search_modifier_date_after_year' => 'Транзацията е през ":value" година или след нея',
|
||||||
'search_modifier_date_after_month' => 'Transaction is in or after month ":value"',
|
'search_modifier_date_after_month' => 'Транзацията е през ":value" месец или след него',
|
||||||
'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"',
|
'search_modifier_date_after_day' => 'Транзацията е на ":value" число от месеца или след него',
|
||||||
'update_rule_from_query' => 'Обновяване на правило ":rule" от низа за търсене',
|
'update_rule_from_query' => 'Обновяване на правило ":rule" от низа за търсене',
|
||||||
'create_rule_from_query' => 'Създай ново правило от низа за търсене',
|
'create_rule_from_query' => 'Създай ново правило от низа за търсене',
|
||||||
'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.',
|
'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.',
|
||||||
@ -433,8 +435,8 @@ return [
|
|||||||
'apply_rule_selection' => 'Приложете правило ":title" към селекция от вашите транзакции',
|
'apply_rule_selection' => 'Приложете правило ":title" към селекция от вашите транзакции',
|
||||||
'apply_rule_selection_intro' => 'Правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали правило и се нуждаете промените, да се отразят на всички останали транзакции.',
|
'apply_rule_selection_intro' => 'Правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали правило и се нуждаете промените, да се отразят на всички останали транзакции.',
|
||||||
'include_transactions_from_accounts' => 'Включете транзакции от тези сметки',
|
'include_transactions_from_accounts' => 'Включете транзакции от тези сметки',
|
||||||
'include' => 'Include?',
|
'include' => 'Включи?',
|
||||||
'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".',
|
'applied_rule_selection' => '{0} Няма транзакции в селекцията ти променени от правило ":title".|[1] Една транзакция в селекцията ти променени от правило ":title".|[2,*] :count транзакции в селекцията ти променени от правило ":title".',
|
||||||
'execute' => 'Изпълни',
|
'execute' => 'Изпълни',
|
||||||
'apply_rule_group_selection' => 'Приложете групата правила ":title" към селекция от вашите транзакции',
|
'apply_rule_group_selection' => 'Приложете групата правила ":title" към селекция от вашите транзакции',
|
||||||
'apply_rule_group_selection_intro' => 'Групи правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали група правила и се нуждаете промените, да се отразят на всички останали транзакции.',
|
'apply_rule_group_selection_intro' => 'Групи правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали група правила и се нуждаете промените, да се отразят на всички останали транзакции.',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Вътрешната референция е ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Вътрешната референция е ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'ID на транзакцията е..',
|
'rule_trigger_journal_id_choice' => 'ID на транзакцията е..',
|
||||||
'rule_trigger_journal_id' => 'ID на транзакцията е ":trigger_value"',
|
'rule_trigger_journal_id' => 'ID на транзакцията е ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'ИЗТРИИ транзакция (!)',
|
'rule_action_delete_transaction_choice' => 'ИЗТРИИ транзакция (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Вътрешна референция',
|
'pref_optional_tj_internal_reference' => 'Вътрешна референция',
|
||||||
'pref_optional_tj_notes' => 'Бележки',
|
'pref_optional_tj_notes' => 'Бележки',
|
||||||
'pref_optional_tj_attachments' => 'Прикачени файлове',
|
'pref_optional_tj_attachments' => 'Прикачени файлове',
|
||||||
'pref_optional_tj_external_uri' => 'External URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Location',
|
'pref_optional_tj_location' => 'Location',
|
||||||
'pref_optional_tj_links' => 'Transaction links',
|
'pref_optional_tj_links' => 'Transaction links',
|
||||||
'optional_field_meta_dates' => 'Дати',
|
'optional_field_meta_dates' => 'Дати',
|
||||||
'optional_field_meta_business' => 'Бизнес',
|
'optional_field_meta_business' => 'Бизнес',
|
||||||
'optional_field_attachments' => 'Прикачени файлове',
|
'optional_field_attachments' => 'Прикачени файлове',
|
||||||
'optional_field_meta_data' => 'Незадължителни мета данни',
|
'optional_field_meta_data' => 'Незадължителни мета данни',
|
||||||
'external_uri' => 'External URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Изтрий данните',
|
'delete_stuff_header' => 'Изтрий данните',
|
||||||
@ -1049,23 +1053,23 @@ return [
|
|||||||
'bill_expected_date' => 'Очаквано :date',
|
'bill_expected_date' => 'Очаквано :date',
|
||||||
'bill_expected_date_js' => 'Expected {date}',
|
'bill_expected_date_js' => 'Expected {date}',
|
||||||
'bill_paid_on' => 'Paid on {date}',
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
'bill_repeats_weekly' => 'Repeats weekly',
|
'bill_repeats_weekly' => 'Повтаря се седмично',
|
||||||
'bill_repeats_monthly' => 'Repeats monthly',
|
'bill_repeats_monthly' => 'Повтаря се месечно',
|
||||||
'bill_repeats_quarterly' => 'Repeats quarterly',
|
'bill_repeats_quarterly' => 'Повтаря се тримесечно',
|
||||||
'bill_repeats_half-year' => 'Repeats every half year',
|
'bill_repeats_half-year' => 'Повтаря се на половин година',
|
||||||
'bill_repeats_yearly' => 'Repeats yearly',
|
'bill_repeats_yearly' => 'Повтаря се годишно',
|
||||||
'bill_repeats_weekly_other' => 'Repeats every other week',
|
'bill_repeats_weekly_other' => 'Повтаря се през седмица',
|
||||||
'bill_repeats_monthly_other' => 'Repeats every other month',
|
'bill_repeats_monthly_other' => 'Повтаря се през месец',
|
||||||
'bill_repeats_quarterly_other' => 'Repeats every other quarter',
|
'bill_repeats_quarterly_other' => 'Повтаря се през тримесечие',
|
||||||
'bill_repeats_half-year_other' => 'Repeats yearly',
|
'bill_repeats_half-year_other' => 'Повтаря се годишно',
|
||||||
'bill_repeats_yearly_other' => 'Repeats every other year',
|
'bill_repeats_yearly_other' => 'Повтаря се през година',
|
||||||
'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks',
|
'bill_repeats_weekly_skip' => 'Повтаря се през {skip} седмици',
|
||||||
'bill_repeats_monthly_skip' => 'Repeats every {skip} months',
|
'bill_repeats_monthly_skip' => 'Повтаря се през {skip} месеца',
|
||||||
'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters',
|
'bill_repeats_quarterly_skip' => 'Повтаря се през {skip} тримесечия',
|
||||||
'bill_repeats_half-year_skip' => 'Repeats every {skip} half years',
|
'bill_repeats_half-year_skip' => 'Повтаря се през {skip} половин години',
|
||||||
'bill_repeats_yearly_skip' => 'Repeats every {skip} years',
|
'bill_repeats_yearly_skip' => 'Повтаря се през {skip} години',
|
||||||
'subscriptions' => 'Subscriptions',
|
'subscriptions' => 'Абонаменти',
|
||||||
'forever' => 'Forever',
|
'forever' => 'Завинаги',
|
||||||
'extension_date_is' => 'Extension date is {date}',
|
'extension_date_is' => 'Extension date is {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
@ -1089,11 +1093,11 @@ return [
|
|||||||
'delete_revenue_account' => 'Изтрий сметка за приходи ":name"',
|
'delete_revenue_account' => 'Изтрий сметка за приходи ":name"',
|
||||||
'delete_liabilities_account' => 'Изтрий задължение ":name"',
|
'delete_liabilities_account' => 'Изтрий задължение ":name"',
|
||||||
'asset_deleted' => 'Сметка за активи ":name" е успешно изтрита',
|
'asset_deleted' => 'Сметка за активи ":name" е успешно изтрита',
|
||||||
'account_deleted' => 'Successfully deleted account ":name"',
|
'account_deleted' => 'Сметка ":name" е успешно изтрита',
|
||||||
'expense_deleted' => 'Сметка за разходи ":name" е успешно изтрита',
|
'expense_deleted' => 'Сметка за разходи ":name" е успешно изтрита',
|
||||||
'revenue_deleted' => 'Сметка за приходи ":name" е успешно изтрита',
|
'revenue_deleted' => 'Сметка за приходи ":name" е успешно изтрита',
|
||||||
'update_asset_account' => 'Редактирай сметка за активи',
|
'update_asset_account' => 'Редактирай сметка за активи',
|
||||||
'update_undefined_account' => 'Update account',
|
'update_undefined_account' => 'Актуализиране на сметката',
|
||||||
'update_liabilities_account' => 'Редактирай задължение',
|
'update_liabilities_account' => 'Редактирай задължение',
|
||||||
'update_expense_account' => 'Редактирай сметка за разходи',
|
'update_expense_account' => 'Редактирай сметка за разходи',
|
||||||
'update_revenue_account' => 'Редактирай сметка за приходи',
|
'update_revenue_account' => 'Редактирай сметка за приходи',
|
||||||
@ -1137,11 +1141,11 @@ return [
|
|||||||
'cant_find_redirect_account' => 'Firefly III се опита да ви пренасочи, но не успя. Съжалявам за това. Обратно към началото.',
|
'cant_find_redirect_account' => 'Firefly III се опита да ви пренасочи, но не успя. Съжалявам за това. Обратно към началото.',
|
||||||
'account_type' => 'Вид на сметка',
|
'account_type' => 'Вид на сметка',
|
||||||
'save_transactions_by_moving' => 'Запазете тази транзакция, като я преместите в друг акаунт:|Запазете тези транзакции, като ги преместите в друг акаунт:',
|
'save_transactions_by_moving' => 'Запазете тази транзакция, като я преместите в друг акаунт:|Запазете тези транзакции, като ги преместите в друг акаунт:',
|
||||||
'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.',
|
'save_transactions_by_moving_js' => 'Няма транзакции|Запазете тази транзакция, като я преместите в друг акаунт. |Запазете тези транзакции, като ги преместите в друг акаунт.',
|
||||||
'stored_new_account' => 'Новата сметка ":name" бе запаметена!',
|
'stored_new_account' => 'Новата сметка ":name" бе запаметена!',
|
||||||
'stored_new_account_js' => 'New account "<a href="accounts/show/{ID}">{name}</a>" stored!',
|
'stored_new_account_js' => 'Нова сметка "<a href="accounts/show/{ID}">{name}</a>" запазена!',
|
||||||
'updated_account' => 'Сметка ":name" бе обновена',
|
'updated_account' => 'Сметка ":name" бе обновена',
|
||||||
'updated_account_js' => 'Updated account "<a href="accounts/show/{ID}">{title}</a>".',
|
'updated_account_js' => 'Актуализирана сметка "<a href="accounts/show/{ID}">{title}</a>".',
|
||||||
'credit_card_options' => 'Настройки за кредитни карти',
|
'credit_card_options' => 'Настройки за кредитни карти',
|
||||||
'no_transactions_account' => 'Няма транзакции (в този период) за сметка за активи ":name".',
|
'no_transactions_account' => 'Няма транзакции (в този период) за сметка за активи ":name".',
|
||||||
'no_transactions_period' => 'Няма транзакции (в този период).',
|
'no_transactions_period' => 'Няма транзакции (в този период).',
|
||||||
@ -1178,11 +1182,11 @@ return [
|
|||||||
'interest_calc_daily' => 'На ден',
|
'interest_calc_daily' => 'На ден',
|
||||||
'interest_calc_monthly' => 'На месец',
|
'interest_calc_monthly' => 'На месец',
|
||||||
'interest_calc_yearly' => 'Годишно',
|
'interest_calc_yearly' => 'Годишно',
|
||||||
'interest_calc_weekly' => 'Per week',
|
'interest_calc_weekly' => 'Седмично',
|
||||||
'interest_calc_half-year' => 'Per half year',
|
'interest_calc_half-year' => 'За половин година',
|
||||||
'interest_calc_quarterly' => 'Per quarter',
|
'interest_calc_quarterly' => 'За тримесечие',
|
||||||
'initial_balance_account' => 'Първоначално салдо на сметка ":account"',
|
'initial_balance_account' => 'Първоначално салдо на сметка ":account"',
|
||||||
'list_options' => 'List options',
|
'list_options' => 'Списък на опциите',
|
||||||
|
|
||||||
// categories:
|
// categories:
|
||||||
'new_category' => 'Нова категория',
|
'new_category' => 'Нова категория',
|
||||||
@ -1208,9 +1212,9 @@ return [
|
|||||||
'updated_withdrawal' => 'Тегленето ":description" бе обновено',
|
'updated_withdrawal' => 'Тегленето ":description" бе обновено',
|
||||||
'updated_deposit' => 'Депозитът ":description" бе обновен',
|
'updated_deposit' => 'Депозитът ":description" бе обновен',
|
||||||
'updated_transfer' => 'Прехвърлянето ":description" бе обновено',
|
'updated_transfer' => 'Прехвърлянето ":description" бе обновено',
|
||||||
'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.',
|
'no_changes_withdrawal' => 'Теглене ":description" не беше променено.',
|
||||||
'no_changes_deposit' => 'Deposit ":description" was not changed.',
|
'no_changes_deposit' => 'Депозит ":description" не беше променен.',
|
||||||
'no_changes_transfer' => 'Transfer ":description" was not changed.',
|
'no_changes_transfer' => 'Прехвърляне ":description" не беше променено.',
|
||||||
'delete_withdrawal' => 'Изтрий тегленето ":description"',
|
'delete_withdrawal' => 'Изтрий тегленето ":description"',
|
||||||
'delete_deposit' => 'Изтрий депозита ":description"',
|
'delete_deposit' => 'Изтрий депозита ":description"',
|
||||||
'delete_transfer' => 'Изтрий прехвърлянето ":description"',
|
'delete_transfer' => 'Изтрий прехвърлянето ":description"',
|
||||||
@ -1291,12 +1295,12 @@ return [
|
|||||||
'journal_link_bill' => 'Тази транзакция е свързана със сметка <a href=":route">:name </a>. За да изтриете връзката, премахнете отметката от квадратчето. Използвайте правила, за да я свържете с друга сметка.',
|
'journal_link_bill' => 'Тази транзакция е свързана със сметка <a href=":route">:name </a>. За да изтриете връзката, премахнете отметката от квадратчето. Използвайте правила, за да я свържете с друга сметка.',
|
||||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Транзакция #{ID}("{title}")</a> беше записана.',
|
'transaction_stored_link' => '<a href="transactions/show/{ID}">Транзакция #{ID}("{title}")</a> беше записана.',
|
||||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Транзакция #{ID}</a> беше записана.',
|
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Транзакция #{ID}</a> беше записана.',
|
||||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> ("{title}") has been updated.',
|
'transaction_updated_link' => '<a href="transactions/show/{ID}">Транзакция #{ID}</a> ("{title}") беше обновена.',
|
||||||
'transaction_updated_no_changes' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> ("{title}") did not receive any changes.',
|
'transaction_updated_no_changes' => '<a href="transactions/show/{ID}">Транзакция #{ID}</a> ("{title}") не е получила промени.',
|
||||||
'first_split_decides' => 'The first split determines the value of this field',
|
'first_split_decides' => 'Първия раздел определя стойността на това поле',
|
||||||
'first_split_overrules_source' => 'The first split may overrule the source account',
|
'first_split_overrules_source' => 'Първия раздел може да отмени разходната сметка',
|
||||||
'first_split_overrules_destination' => 'The first split may overrule the destination account',
|
'first_split_overrules_destination' => 'Първия раздел може да отмени приходната сметка',
|
||||||
'spent_x_of_y' => 'Spent {amount} of {total}',
|
'spent_x_of_y' => 'Похарчено е {amount} от {total}',
|
||||||
|
|
||||||
// new user:
|
// new user:
|
||||||
'welcome' => 'Добре дошли в Firefly III!',
|
'welcome' => 'Добре дошли в Firefly III!',
|
||||||
@ -1335,9 +1339,9 @@ return [
|
|||||||
'per_day' => 'На ден',
|
'per_day' => 'На ден',
|
||||||
'left_to_spend_per_day' => 'Остава за разходи на ден',
|
'left_to_spend_per_day' => 'Остава за разходи на ден',
|
||||||
'bills_paid' => 'Платени сметки',
|
'bills_paid' => 'Платени сметки',
|
||||||
'custom_period' => 'Custom period',
|
'custom_period' => 'Период по избор',
|
||||||
'reset_to_current' => 'Reset to current period',
|
'reset_to_current' => 'Reset to current period',
|
||||||
'select_period' => 'Select a period',
|
'select_period' => 'Избор на период',
|
||||||
|
|
||||||
// menu and titles, should be recycled as often as possible:
|
// menu and titles, should be recycled as often as possible:
|
||||||
'currency' => 'Валута',
|
'currency' => 'Валута',
|
||||||
@ -1361,17 +1365,17 @@ return [
|
|||||||
'account_type_Debt' => 'Дълг',
|
'account_type_Debt' => 'Дълг',
|
||||||
'account_type_Loan' => 'Заем',
|
'account_type_Loan' => 'Заем',
|
||||||
'account_type_Mortgage' => 'Ипотека',
|
'account_type_Mortgage' => 'Ипотека',
|
||||||
'account_type_debt' => 'Debt',
|
'account_type_debt' => 'Дълг',
|
||||||
'account_type_loan' => 'Loan',
|
'account_type_loan' => 'Заем',
|
||||||
'account_type_mortgage' => 'Mortgage',
|
'account_type_mortgage' => 'Ипотека',
|
||||||
'account_type_Credit card' => 'Кредитна карта',
|
'account_type_Credit card' => 'Кредитна карта',
|
||||||
'credit_card_type_monthlyFull' => 'Full payment every month',
|
'credit_card_type_monthlyFull' => 'Пълно плащане всеки месец',
|
||||||
'liability_direction_credit' => 'I am owed this debt',
|
'liability_direction_credit' => 'Дължът ми този дълг',
|
||||||
'liability_direction_debit' => 'I owe this debt to somebody else',
|
'liability_direction_debit' => 'Дължа този дълг на някого',
|
||||||
'liability_direction_credit_short' => 'Owed this debt',
|
'liability_direction_credit_short' => 'Дължът ми дълг',
|
||||||
'liability_direction_debit_short' => 'Owe this debt',
|
'liability_direction_debit_short' => 'Дължа дълг',
|
||||||
'liability_direction__short' => 'Unknown',
|
'liability_direction__short' => 'Неизвестно',
|
||||||
'liability_direction_null_short' => 'Unknown',
|
'liability_direction_null_short' => 'Неизвестно',
|
||||||
'Liability credit' => 'Liability credit',
|
'Liability credit' => 'Liability credit',
|
||||||
'budgets' => 'Бюджети',
|
'budgets' => 'Бюджети',
|
||||||
'tags' => 'Етикети',
|
'tags' => 'Етикети',
|
||||||
@ -1417,7 +1421,7 @@ return [
|
|||||||
'automation' => 'Автоматизация',
|
'automation' => 'Автоматизация',
|
||||||
'others' => 'Други',
|
'others' => 'Други',
|
||||||
'classification' => 'Класификация',
|
'classification' => 'Класификация',
|
||||||
'store_transaction' => 'Store transaction',
|
'store_transaction' => 'Запазете транзакция',
|
||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Финансов отчет по подразбиране между :start и :end',
|
'report_default' => 'Финансов отчет по подразбиране между :start и :end',
|
||||||
@ -1443,7 +1447,7 @@ return [
|
|||||||
'splitByAccount' => 'Раздели по сметка',
|
'splitByAccount' => 'Раздели по сметка',
|
||||||
'coveredWithTags' => 'Покрити с етикети',
|
'coveredWithTags' => 'Покрити с етикети',
|
||||||
'leftInBudget' => 'Останало в бюджета',
|
'leftInBudget' => 'Останало в бюджета',
|
||||||
'left_in_debt' => 'Amount due',
|
'left_in_debt' => 'Дължима сума',
|
||||||
'sumOfSums' => 'Сума от суми',
|
'sumOfSums' => 'Сума от суми',
|
||||||
'noCategory' => '(без категория)',
|
'noCategory' => '(без категория)',
|
||||||
'notCharged' => 'Не е таксувано (все още)',
|
'notCharged' => 'Не е таксувано (все още)',
|
||||||
@ -1539,8 +1543,8 @@ return [
|
|||||||
'journal-amount' => 'Текущ запис на сметка',
|
'journal-amount' => 'Текущ запис на сметка',
|
||||||
'name' => 'Име',
|
'name' => 'Име',
|
||||||
'date' => 'Дата',
|
'date' => 'Дата',
|
||||||
'date_and_time' => 'Date and time',
|
'date_and_time' => 'Дата и час',
|
||||||
'time' => 'Time',
|
'time' => 'Време',
|
||||||
'paid' => 'Платени',
|
'paid' => 'Платени',
|
||||||
'unpaid' => 'Неплатени',
|
'unpaid' => 'Неплатени',
|
||||||
'day' => 'Ден',
|
'day' => 'Ден',
|
||||||
@ -1604,8 +1608,8 @@ return [
|
|||||||
'transaction_journal_information' => 'Информация за транзакция',
|
'transaction_journal_information' => 'Информация за транзакция',
|
||||||
'transaction_journal_meta' => 'Мета информация',
|
'transaction_journal_meta' => 'Мета информация',
|
||||||
'transaction_journal_more' => 'Повече информация',
|
'transaction_journal_more' => 'Повече информация',
|
||||||
'basic_journal_information' => 'Basic transaction information',
|
'basic_journal_information' => 'Основна информация за транзакция',
|
||||||
'transaction_journal_extra' => 'Extra information',
|
'transaction_journal_extra' => 'Допълнителна информация',
|
||||||
'att_part_of_journal' => 'Запазено като ":journal"',
|
'att_part_of_journal' => 'Запазено като ":journal"',
|
||||||
'total_amount' => 'Обща сума',
|
'total_amount' => 'Обща сума',
|
||||||
'number_of_decimals' => 'Брой десетични знаци',
|
'number_of_decimals' => 'Брой десетични знаци',
|
||||||
@ -1734,8 +1738,8 @@ return [
|
|||||||
'store_as_new' => 'Съхранете като нова транзакция, вместо да я актуализирате.',
|
'store_as_new' => 'Съхранете като нова транзакция, вместо да я актуализирате.',
|
||||||
'reset_after' => 'Изчистване на формуляра след изпращане',
|
'reset_after' => 'Изчистване на формуляра след изпращане',
|
||||||
'errors_submission' => 'Имаше нещо нередно с вашите данни. Моля, проверете грешките.',
|
'errors_submission' => 'Имаше нещо нередно с вашите данни. Моля, проверете грешките.',
|
||||||
'transaction_expand_split' => 'Expand split',
|
'transaction_expand_split' => 'Разшири раздел',
|
||||||
'transaction_collapse_split' => 'Collapse split',
|
'transaction_collapse_split' => 'Свий раздел',
|
||||||
|
|
||||||
// object groups
|
// object groups
|
||||||
'default_group_title_name' => '(без група)',
|
'default_group_title_name' => '(без група)',
|
||||||
@ -1758,13 +1762,13 @@ return [
|
|||||||
'no_accounts_imperative_liabilities' => 'Не е необходимо да използвате тази функция, но тя може да бъде полезна, ако искате да следите тези неща.',
|
'no_accounts_imperative_liabilities' => 'Не е необходимо да използвате тази функция, но тя може да бъде полезна, ако искате да следите тези неща.',
|
||||||
'no_accounts_create_liabilities' => 'Създай задължение',
|
'no_accounts_create_liabilities' => 'Създай задължение',
|
||||||
'no_budgets_title_default' => 'Нека да създадем бюджет',
|
'no_budgets_title_default' => 'Нека да създадем бюджет',
|
||||||
'no_rules_title_default' => 'Let\'s create a rule',
|
'no_rules_title_default' => 'Нека да създадем правило',
|
||||||
'no_budgets_intro_default' => 'Все още нямате бюджети. Бюджетите се използват за организиране на разходите ви в логически групи, на които можете да дадете лимит, за да ограничите разходите си.',
|
'no_budgets_intro_default' => 'Все още нямате бюджети. Бюджетите се използват за организиране на разходите ви в логически групи, на които можете да дадете лимит, за да ограничите разходите си.',
|
||||||
'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.',
|
'no_rules_intro_default' => 'Все още нямаш правила. Правилата са силни автоматизации, които могат да управляват транзации за теб.',
|
||||||
'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:',
|
'no_rules_imperative_default' => 'Правилата могат да бъдат много полезни, когато управляваш транзакции. Нека да създадем едно сега:',
|
||||||
'no_budgets_imperative_default' => 'Бюджетите са основните инструменти на финансовото управление. Нека сега създадем такъв:',
|
'no_budgets_imperative_default' => 'Бюджетите са основните инструменти на финансовото управление. Нека сега създадем такъв:',
|
||||||
'no_budgets_create_default' => 'Създай бюджет',
|
'no_budgets_create_default' => 'Създай бюджет',
|
||||||
'no_rules_create_default' => 'Create a rule',
|
'no_rules_create_default' => 'Създай правило',
|
||||||
'no_categories_title_default' => 'Нека да създадем категория!',
|
'no_categories_title_default' => 'Нека да създадем категория!',
|
||||||
'no_categories_intro_default' => 'Все още нямате категории. Категориите се използват за фина настройка на вашите транзакции и етикетиране с тяхната определена категория.',
|
'no_categories_intro_default' => 'Все още нямате категории. Категориите се използват за фина настройка на вашите транзакции и етикетиране с тяхната определена категория.',
|
||||||
'no_categories_imperative_default' => 'Категориите се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно. Нека сега създадем такава:',
|
'no_categories_imperative_default' => 'Категориите се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно. Нека сега създадем такава:',
|
||||||
@ -1889,8 +1893,8 @@ return [
|
|||||||
'edit_object_group' => 'Редактирай група ":title"',
|
'edit_object_group' => 'Редактирай група ":title"',
|
||||||
'delete_object_group' => 'Изтрий група ":title"',
|
'delete_object_group' => 'Изтрий група ":title"',
|
||||||
'update_object_group' => 'Обнови група',
|
'update_object_group' => 'Обнови група',
|
||||||
'updated_object_group' => 'Successfully updated group ":title"',
|
'updated_object_group' => 'Успешно обновена група ":title"',
|
||||||
'deleted_object_group' => 'Successfully deleted group ":title"',
|
'deleted_object_group' => 'Успешно изтрита група ":title"',
|
||||||
'object_group' => 'Група',
|
'object_group' => 'Група',
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Вид на сметка',
|
'account_type' => 'Вид на сметка',
|
||||||
'created_at' => 'Създаден на',
|
'created_at' => 'Създаден на',
|
||||||
'account' => 'Сметка',
|
'account' => 'Сметка',
|
||||||
'external_uri' => 'Външно URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Сума',
|
'matchingAmount' => 'Сума',
|
||||||
'destination' => 'Дестинация',
|
'destination' => 'Дестинация',
|
||||||
'source' => 'Източник',
|
'source' => 'Източник',
|
||||||
@ -130,11 +130,11 @@ return [
|
|||||||
'field' => 'Поле',
|
'field' => 'Поле',
|
||||||
'value' => 'Стойност',
|
'value' => 'Стойност',
|
||||||
'interest' => 'Лихва',
|
'interest' => 'Лихва',
|
||||||
'interest_period' => 'Interest period',
|
'interest_period' => 'Лихвен период',
|
||||||
'liability_type' => 'Вид на задължението',
|
'liability_type' => 'Вид на задължението',
|
||||||
'liability_direction' => 'Liability in/out',
|
'liability_direction' => 'Задължения вход/изход',
|
||||||
'end_date' => 'End date',
|
'end_date' => 'Крайна дата',
|
||||||
'payment_info' => 'Payment information',
|
'payment_info' => 'Платежна информация',
|
||||||
'expected_info' => 'Next expected transaction',
|
'expected_info' => 'Следваща очаквана транзакция',
|
||||||
'start_date' => 'Start date',
|
'start_date' => 'Начална дата',
|
||||||
];
|
];
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Не може да използвате тази сметка като разходна сметка.',
|
'generic_invalid_source' => 'Не може да използвате тази сметка като разходна сметка.',
|
||||||
'generic_invalid_destination' => 'Не може да използвате тази сметка като приходна сметка.',
|
'generic_invalid_destination' => 'Не може да използвате тази сметка като приходна сметка.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute трябва да е по-голямо или равно на :value.',
|
'gte.numeric' => ':attribute трябва да е по-голямо или равно на :value.',
|
||||||
'gt.numeric' => ':attribute трябва да бъде по-голям от :value.',
|
'gt.numeric' => ':attribute трябва да бъде по-голям от :value.',
|
||||||
'gte.file' => ':attribute трябва да е по-голямо или равно на :value Kb.',
|
'gte.file' => ':attribute трябва да е по-голямо или равно на :value Kb.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Domů',
|
'home' => 'Domů',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Upravit měnu „:name“',
|
'edit_currency' => 'Upravit měnu „:name“',
|
||||||
'delete_currency' => 'Odstranit měnu „:name“',
|
'delete_currency' => 'Odstranit měnu „:name“',
|
||||||
'newPiggyBank' => 'Vytvořit novou pokladničku',
|
'newPiggyBank' => 'Vytvořit novou pokladničku',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Odstranit vazbu mezi transakcemi',
|
'delete_journal_link' => 'Odstranit vazbu mezi transakcemi',
|
||||||
'edit_object_group' => 'Upravit skupinu „:title“',
|
'edit_object_group' => 'Upravit skupinu „:title“',
|
||||||
'delete_object_group' => 'Odstranit skupinu „:title“',
|
'delete_object_group' => 'Odstranit skupinu „:title“',
|
||||||
'logout_others' => 'Odhlásit ostatní relace',
|
'logout_others' => 'Odhlásit ostatní relace'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Transakce byla vytvořena dne ":value"',
|
'search_modifier_created_on' => 'Transakce byla vytvořena dne ":value"',
|
||||||
'search_modifier_updated_on' => 'Transakce byla naposledy aktualizována dne ":value"',
|
'search_modifier_updated_on' => 'Transakce byla naposledy aktualizována dne ":value"',
|
||||||
'search_modifier_external_id' => 'Externí ID je ":value"',
|
'search_modifier_external_id' => 'Externí ID je ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
||||||
'search_modifier_description_starts' => 'Description is ":value"',
|
'search_modifier_description_starts' => 'Description is ":value"',
|
||||||
'search_modifier_description_ends' => 'Description ends with ":value"',
|
'search_modifier_description_ends' => 'Description ends with ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
||||||
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Interní reference',
|
'pref_optional_tj_internal_reference' => 'Interní reference',
|
||||||
'pref_optional_tj_notes' => 'Poznámky',
|
'pref_optional_tj_notes' => 'Poznámky',
|
||||||
'pref_optional_tj_attachments' => 'Přílohy',
|
'pref_optional_tj_attachments' => 'Přílohy',
|
||||||
'pref_optional_tj_external_uri' => 'Externí URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Poloha',
|
'pref_optional_tj_location' => 'Poloha',
|
||||||
'pref_optional_tj_links' => 'Transaction links',
|
'pref_optional_tj_links' => 'Transaction links',
|
||||||
'optional_field_meta_dates' => 'Datumy',
|
'optional_field_meta_dates' => 'Datumy',
|
||||||
'optional_field_meta_business' => 'Business',
|
'optional_field_meta_business' => 'Business',
|
||||||
'optional_field_attachments' => 'Přílohy',
|
'optional_field_attachments' => 'Přílohy',
|
||||||
'optional_field_meta_data' => 'Volitelná metadata',
|
'optional_field_meta_data' => 'Volitelná metadata',
|
||||||
'external_uri' => 'Externí URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Odstranit data',
|
'delete_stuff_header' => 'Odstranit data',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Typ účtu',
|
'account_type' => 'Typ účtu',
|
||||||
'created_at' => 'Vytvořeno',
|
'created_at' => 'Vytvořeno',
|
||||||
'account' => 'Účet',
|
'account' => 'Účet',
|
||||||
'external_uri' => 'Externí identifikátor URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Částka',
|
'matchingAmount' => 'Částka',
|
||||||
'destination' => 'Cíl',
|
'destination' => 'Cíl',
|
||||||
'source' => 'Zdroj',
|
'source' => 'Zdroj',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Tento účet nelze použít jako zdrojový účet.',
|
'generic_invalid_source' => 'Tento účet nelze použít jako zdrojový účet.',
|
||||||
'generic_invalid_destination' => 'Tento účet nelze použít jako cílový účet.',
|
'generic_invalid_destination' => 'Tento účet nelze použít jako cílový účet.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'Je třeba, aby :attribute byl větší nebo roven :value.',
|
'gte.numeric' => 'Je třeba, aby :attribute byl větší nebo roven :value.',
|
||||||
'gt.numeric' => 'Je třeba, aby :attribute byl větší než :value.',
|
'gt.numeric' => 'Je třeba, aby :attribute byl větší než :value.',
|
||||||
'gte.file' => 'Hodnota :attribute musí být větší nebo rovná :value kilobajtů.',
|
'gte.file' => 'Hodnota :attribute musí být větší nebo rovná :value kilobajtů.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Startseite',
|
'home' => 'Startseite',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Währung „:name” bearbeiten',
|
'edit_currency' => 'Währung „:name” bearbeiten',
|
||||||
'delete_currency' => 'Währung „:name” löschen',
|
'delete_currency' => 'Währung „:name” löschen',
|
||||||
'newPiggyBank' => 'Neues Sparschwein erstellen',
|
'newPiggyBank' => 'Neues Sparschwein erstellen',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Transaktionsverknüpfung löschen',
|
'delete_journal_link' => 'Transaktionsverknüpfung löschen',
|
||||||
'edit_object_group' => 'Gruppe „:title” bearbeiten',
|
'edit_object_group' => 'Gruppe „:title” bearbeiten',
|
||||||
'delete_object_group' => 'Gruppe „:title” löschen',
|
'delete_object_group' => 'Gruppe „:title” löschen',
|
||||||
'logout_others' => 'Alle anderen Sitzungen abmelden',
|
'logout_others' => 'Alle anderen Sitzungen abmelden'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Buchung wurde am „:value” erstellt',
|
'search_modifier_created_on' => 'Buchung wurde am „:value” erstellt',
|
||||||
'search_modifier_updated_on' => 'Buchung wurde zuletzt am „:value” aktualisiert',
|
'search_modifier_updated_on' => 'Buchung wurde zuletzt am „:value” aktualisiert',
|
||||||
'search_modifier_external_id' => 'Externe ID lautet „::value”',
|
'search_modifier_external_id' => 'Externe ID lautet „::value”',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Interne Referenz lautet „:value”',
|
'search_modifier_internal_reference' => 'Interne Referenz lautet „:value”',
|
||||||
'search_modifier_description_starts' => 'Beschreibung ist „:value”',
|
'search_modifier_description_starts' => 'Beschreibung ist „:value”',
|
||||||
'search_modifier_description_ends' => 'Beschreibung endet mit „:value”',
|
'search_modifier_description_ends' => 'Beschreibung endet mit „:value”',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Interne Referenz ist „:trigger_value”',
|
'rule_trigger_internal_reference' => 'Interne Referenz ist „:trigger_value”',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaktions-Journal-ID ist..',
|
'rule_trigger_journal_id_choice' => 'Transaktions-Journal-ID ist..',
|
||||||
'rule_trigger_journal_id' => 'Transaktions-Journal-ID ist „:trigger_value”',
|
'rule_trigger_journal_id' => 'Transaktions-Journal-ID ist „:trigger_value”',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'Buchung löschen (!)',
|
'rule_action_delete_transaction_choice' => 'Buchung löschen (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Interner Verweis',
|
'pref_optional_tj_internal_reference' => 'Interner Verweis',
|
||||||
'pref_optional_tj_notes' => 'Notizen',
|
'pref_optional_tj_notes' => 'Notizen',
|
||||||
'pref_optional_tj_attachments' => 'Anhänge',
|
'pref_optional_tj_attachments' => 'Anhänge',
|
||||||
'pref_optional_tj_external_uri' => 'Externe URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Herkunft',
|
'pref_optional_tj_location' => 'Herkunft',
|
||||||
'pref_optional_tj_links' => 'Buchungsverknüpfungen',
|
'pref_optional_tj_links' => 'Buchungsverknüpfungen',
|
||||||
'optional_field_meta_dates' => 'Daten',
|
'optional_field_meta_dates' => 'Daten',
|
||||||
'optional_field_meta_business' => 'Geschäftlich',
|
'optional_field_meta_business' => 'Geschäftlich',
|
||||||
'optional_field_attachments' => 'Anhänge',
|
'optional_field_attachments' => 'Anhänge',
|
||||||
'optional_field_meta_data' => 'Optionale Metadaten',
|
'optional_field_meta_data' => 'Optionale Metadaten',
|
||||||
'external_uri' => 'Externe URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Daten löschen',
|
'delete_stuff_header' => 'Daten löschen',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Kontotyp',
|
'account_type' => 'Kontotyp',
|
||||||
'created_at' => 'Erstellt am',
|
'created_at' => 'Erstellt am',
|
||||||
'account' => 'Konto',
|
'account' => 'Konto',
|
||||||
'external_uri' => 'Externe URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Betrag',
|
'matchingAmount' => 'Betrag',
|
||||||
'destination' => 'Empfänger',
|
'destination' => 'Empfänger',
|
||||||
'source' => 'Quelle',
|
'source' => 'Quelle',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Sie können dieses Konto nicht als Quellkonto verwenden.',
|
'generic_invalid_source' => 'Sie können dieses Konto nicht als Quellkonto verwenden.',
|
||||||
'generic_invalid_destination' => 'Sie können dieses Konto nicht als Zielkonto verwenden.',
|
'generic_invalid_destination' => 'Sie können dieses Konto nicht als Zielkonto verwenden.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute muss größer oder gleich :value sein.',
|
'gte.numeric' => ':attribute muss größer oder gleich :value sein.',
|
||||||
'gt.numeric' => ':attribute muss größer als :value sein.',
|
'gt.numeric' => ':attribute muss größer als :value sein.',
|
||||||
'gte.file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
|
'gte.file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Αρχική',
|
'home' => 'Αρχική',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Επεξεργασία νομίσματος ":name"',
|
'edit_currency' => 'Επεξεργασία νομίσματος ":name"',
|
||||||
'delete_currency' => 'Διαγραφή νομίσματος ":name"',
|
'delete_currency' => 'Διαγραφή νομίσματος ":name"',
|
||||||
'newPiggyBank' => 'Δημιουργία ενός νέου κουμπαρά',
|
'newPiggyBank' => 'Δημιουργία ενός νέου κουμπαρά',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Διαγραφή συνδέσμου μεταξύ των συναλλαγών',
|
'delete_journal_link' => 'Διαγραφή συνδέσμου μεταξύ των συναλλαγών',
|
||||||
'edit_object_group' => 'Επεξεργασία ομάδας ":title"',
|
'edit_object_group' => 'Επεξεργασία ομάδας ":title"',
|
||||||
'delete_object_group' => 'Διαγραφή ομάδας ":title"',
|
'delete_object_group' => 'Διαγραφή ομάδας ":title"',
|
||||||
'logout_others' => 'Αποσυνδέσετε τις άλλες συνεδρίες',
|
'logout_others' => 'Αποσυνδέσετε τις άλλες συνεδρίες'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Η συναλλαγή δημιουργήθηκε στις ":value"',
|
'search_modifier_created_on' => 'Η συναλλαγή δημιουργήθηκε στις ":value"',
|
||||||
'search_modifier_updated_on' => 'Η συναλλαγή ενημερώθηκε στις ":value"',
|
'search_modifier_updated_on' => 'Η συναλλαγή ενημερώθηκε στις ":value"',
|
||||||
'search_modifier_external_id' => 'Το εξωτερικό ID είναι ":value"',
|
'search_modifier_external_id' => 'Το εξωτερικό ID είναι ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Η εσωτερική αναφορά είναι ":value"',
|
'search_modifier_internal_reference' => 'Η εσωτερική αναφορά είναι ":value"',
|
||||||
'search_modifier_description_starts' => 'Η περιγραφή είναι ":value"',
|
'search_modifier_description_starts' => 'Η περιγραφή είναι ":value"',
|
||||||
'search_modifier_description_ends' => 'Η περιγραφή τελειώνει με ":value"',
|
'search_modifier_description_ends' => 'Η περιγραφή τελειώνει με ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Η εσωτερική αναφορά είναι "::trigger_value"',
|
'rule_trigger_internal_reference' => 'Η εσωτερική αναφορά είναι "::trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Το ημερολογιακό ID της συναλλαγής είναι..',
|
'rule_trigger_journal_id_choice' => 'Το ημερολογιακό ID της συναλλαγής είναι..',
|
||||||
'rule_trigger_journal_id' => 'Το ημερολογιακό ID της συναλλαγής είναι ":trigger_value"',
|
'rule_trigger_journal_id' => 'Το ημερολογιακό ID της συναλλαγής είναι ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'ΔΙΑΓΡΑΦΗ συναλλαγής (!)',
|
'rule_action_delete_transaction_choice' => 'ΔΙΑΓΡΑΦΗ συναλλαγής (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Εσωτερική αναφορά',
|
'pref_optional_tj_internal_reference' => 'Εσωτερική αναφορά',
|
||||||
'pref_optional_tj_notes' => 'Σημειώσεις',
|
'pref_optional_tj_notes' => 'Σημειώσεις',
|
||||||
'pref_optional_tj_attachments' => 'Συνημμένα',
|
'pref_optional_tj_attachments' => 'Συνημμένα',
|
||||||
'pref_optional_tj_external_uri' => 'Εξωτερικό URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Τοποθεσία',
|
'pref_optional_tj_location' => 'Τοποθεσία',
|
||||||
'pref_optional_tj_links' => 'Συνδέσεις συναλλαγής',
|
'pref_optional_tj_links' => 'Συνδέσεις συναλλαγής',
|
||||||
'optional_field_meta_dates' => 'Ημερομηνίες',
|
'optional_field_meta_dates' => 'Ημερομηνίες',
|
||||||
'optional_field_meta_business' => 'Επιχείρηση',
|
'optional_field_meta_business' => 'Επιχείρηση',
|
||||||
'optional_field_attachments' => 'Συνημμένα',
|
'optional_field_attachments' => 'Συνημμένα',
|
||||||
'optional_field_meta_data' => 'Προαιρετικά μετα-δεδομένα',
|
'optional_field_meta_data' => 'Προαιρετικά μετα-δεδομένα',
|
||||||
'external_uri' => 'Εξωτερικό URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Διαγραφή δεδομένων',
|
'delete_stuff_header' => 'Διαγραφή δεδομένων',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Τύπος λογαριασμού',
|
'account_type' => 'Τύπος λογαριασμού',
|
||||||
'created_at' => 'Δημιουργήθηκε στις',
|
'created_at' => 'Δημιουργήθηκε στις',
|
||||||
'account' => 'Λογαριασμός',
|
'account' => 'Λογαριασμός',
|
||||||
'external_uri' => 'Εξωτερικό URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Ποσό',
|
'matchingAmount' => 'Ποσό',
|
||||||
'destination' => 'Προορισμός',
|
'destination' => 'Προορισμός',
|
||||||
'source' => 'Προέλευση',
|
'source' => 'Προέλευση',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Δεν μπορείτε να χρησιμοποιήσετε αυτό το λογαριασμό ως λογαριασμό προέλευσης.',
|
'generic_invalid_source' => 'Δεν μπορείτε να χρησιμοποιήσετε αυτό το λογαριασμό ως λογαριασμό προέλευσης.',
|
||||||
'generic_invalid_destination' => 'Δεν μπορείτε να χρησιμοποιήσετε αυτό το λογαριασμό ως λογαριασμό προορισμού.',
|
'generic_invalid_destination' => 'Δεν μπορείτε να χρησιμοποιήσετε αυτό το λογαριασμό ως λογαριασμό προορισμού.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο με :value.',
|
'gte.numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο με :value.',
|
||||||
'gt.numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο από :value.',
|
'gt.numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο από :value.',
|
||||||
'gte.file' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο με :value kilobytes.',
|
'gte.file' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο με :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Home',
|
'home' => 'Home',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Edit currency ":name"',
|
'edit_currency' => 'Edit currency ":name"',
|
||||||
'delete_currency' => 'Delete currency ":name"',
|
'delete_currency' => 'Delete currency ":name"',
|
||||||
'newPiggyBank' => 'Create a new piggy bank',
|
'newPiggyBank' => 'Create a new piggy bank',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Delete link between transactions',
|
'delete_journal_link' => 'Delete link between transactions',
|
||||||
'edit_object_group' => 'Edit group ":title"',
|
'edit_object_group' => 'Edit group ":title"',
|
||||||
'delete_object_group' => 'Delete group ":title"',
|
'delete_object_group' => 'Delete group ":title"',
|
||||||
'logout_others' => 'Logout other sessions',
|
'logout_others' => 'Logout other sessions'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Transaction was created on ":value"',
|
'search_modifier_created_on' => 'Transaction was created on ":value"',
|
||||||
'search_modifier_updated_on' => 'Transaction was last updated on ":value"',
|
'search_modifier_updated_on' => 'Transaction was last updated on ":value"',
|
||||||
'search_modifier_external_id' => 'External ID is ":value"',
|
'search_modifier_external_id' => 'External ID is ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
||||||
'search_modifier_description_starts' => 'Description is ":value"',
|
'search_modifier_description_starts' => 'Description is ":value"',
|
||||||
'search_modifier_description_ends' => 'Description ends with ":value"',
|
'search_modifier_description_ends' => 'Description ends with ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
||||||
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Internal reference',
|
'pref_optional_tj_internal_reference' => 'Internal reference',
|
||||||
'pref_optional_tj_notes' => 'Notes',
|
'pref_optional_tj_notes' => 'Notes',
|
||||||
'pref_optional_tj_attachments' => 'Attachments',
|
'pref_optional_tj_attachments' => 'Attachments',
|
||||||
'pref_optional_tj_external_uri' => 'External URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Location',
|
'pref_optional_tj_location' => 'Location',
|
||||||
'pref_optional_tj_links' => 'Transaction links',
|
'pref_optional_tj_links' => 'Transaction links',
|
||||||
'optional_field_meta_dates' => 'Dates',
|
'optional_field_meta_dates' => 'Dates',
|
||||||
'optional_field_meta_business' => 'Business',
|
'optional_field_meta_business' => 'Business',
|
||||||
'optional_field_attachments' => 'Attachments',
|
'optional_field_attachments' => 'Attachments',
|
||||||
'optional_field_meta_data' => 'Optional meta data',
|
'optional_field_meta_data' => 'Optional meta data',
|
||||||
'external_uri' => 'External URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Delete data',
|
'delete_stuff_header' => 'Delete data',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Account type',
|
'account_type' => 'Account type',
|
||||||
'created_at' => 'Created at',
|
'created_at' => 'Created at',
|
||||||
'account' => 'Account',
|
'account' => 'Account',
|
||||||
'external_uri' => 'External URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Amount',
|
'matchingAmount' => 'Amount',
|
||||||
'destination' => 'Destination',
|
'destination' => 'Destination',
|
||||||
'source' => 'Source',
|
'source' => 'Source',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||||
'gte.file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
'gte.file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Inicio',
|
'home' => 'Inicio',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Editar moneda ":name"',
|
'edit_currency' => 'Editar moneda ":name"',
|
||||||
'delete_currency' => 'Eliminar moneda ":name"',
|
'delete_currency' => 'Eliminar moneda ":name"',
|
||||||
'newPiggyBank' => 'Crear nueva hucha',
|
'newPiggyBank' => 'Crear nueva hucha',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Eliminar enlace entre transacciones',
|
'delete_journal_link' => 'Eliminar enlace entre transacciones',
|
||||||
'edit_object_group' => 'Editar grupo ":title"',
|
'edit_object_group' => 'Editar grupo ":title"',
|
||||||
'delete_object_group' => 'Eliminar grupo ":title"',
|
'delete_object_group' => 'Eliminar grupo ":title"',
|
||||||
'logout_others' => 'Desconectar otras sesiones',
|
'logout_others' => 'Desconectar otras sesiones'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'La transacción fue creada el ":value"',
|
'search_modifier_created_on' => 'La transacción fue creada el ":value"',
|
||||||
'search_modifier_updated_on' => 'La transacción fue actualizada por última vez el ":value"',
|
'search_modifier_updated_on' => 'La transacción fue actualizada por última vez el ":value"',
|
||||||
'search_modifier_external_id' => 'El ID externo es ":value"',
|
'search_modifier_external_id' => 'El ID externo es ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'La referencia interna es ":value"',
|
'search_modifier_internal_reference' => 'La referencia interna es ":value"',
|
||||||
'search_modifier_description_starts' => 'La descripción es ":value"',
|
'search_modifier_description_starts' => 'La descripción es ":value"',
|
||||||
'search_modifier_description_ends' => 'La descripción termina con ":value"',
|
'search_modifier_description_ends' => 'La descripción termina con ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'La referencia interna es ":trigger_value"',
|
'rule_trigger_internal_reference' => 'La referencia interna es ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'El ID del diario de transacciones es..',
|
'rule_trigger_journal_id_choice' => 'El ID del diario de transacciones es..',
|
||||||
'rule_trigger_journal_id' => 'El ID del diario de transacciones es ":trigger_value"',
|
'rule_trigger_journal_id' => 'El ID del diario de transacciones es ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'ELIMINAR transacción (!)',
|
'rule_action_delete_transaction_choice' => 'ELIMINAR transacción (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Referencia interna',
|
'pref_optional_tj_internal_reference' => 'Referencia interna',
|
||||||
'pref_optional_tj_notes' => 'Notas',
|
'pref_optional_tj_notes' => 'Notas',
|
||||||
'pref_optional_tj_attachments' => 'Adjuntos',
|
'pref_optional_tj_attachments' => 'Adjuntos',
|
||||||
'pref_optional_tj_external_uri' => 'URL externa',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Ubicación',
|
'pref_optional_tj_location' => 'Ubicación',
|
||||||
'pref_optional_tj_links' => 'Enlaces de transacciones',
|
'pref_optional_tj_links' => 'Enlaces de transacciones',
|
||||||
'optional_field_meta_dates' => 'Fechas',
|
'optional_field_meta_dates' => 'Fechas',
|
||||||
'optional_field_meta_business' => 'Negocios',
|
'optional_field_meta_business' => 'Negocios',
|
||||||
'optional_field_attachments' => 'Adjuntos',
|
'optional_field_attachments' => 'Adjuntos',
|
||||||
'optional_field_meta_data' => 'Opcional meta datos',
|
'optional_field_meta_data' => 'Opcional meta datos',
|
||||||
'external_uri' => 'URL externa',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Borrar datos',
|
'delete_stuff_header' => 'Borrar datos',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Tipo de cuenta',
|
'account_type' => 'Tipo de cuenta',
|
||||||
'created_at' => 'Fecha de creación',
|
'created_at' => 'Fecha de creación',
|
||||||
'account' => 'Cuenta',
|
'account' => 'Cuenta',
|
||||||
'external_uri' => 'URI externa',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Cantidad',
|
'matchingAmount' => 'Cantidad',
|
||||||
'destination' => 'Destino',
|
'destination' => 'Destino',
|
||||||
'source' => 'Origen',
|
'source' => 'Origen',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'No puedes usar esta cuenta como cuenta de origen.',
|
'generic_invalid_source' => 'No puedes usar esta cuenta como cuenta de origen.',
|
||||||
'generic_invalid_destination' => 'No puede usar esta cuenta como cuenta de destino.',
|
'generic_invalid_destination' => 'No puede usar esta cuenta como cuenta de destino.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute debe ser mayor o igual que :value.',
|
'gte.numeric' => ':attribute debe ser mayor o igual que :value.',
|
||||||
'gt.numeric' => 'El :attribute debe ser mayor que :value.',
|
'gt.numeric' => 'El :attribute debe ser mayor que :value.',
|
||||||
'gte.file' => 'El :attribute debe ser mayor o igual a :value kilobytes.',
|
'gte.file' => 'El :attribute debe ser mayor o igual a :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Etusivu',
|
'home' => 'Etusivu',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Muokkaa valuuttaa ":name"',
|
'edit_currency' => 'Muokkaa valuuttaa ":name"',
|
||||||
'delete_currency' => 'Poista valuutta ":name"',
|
'delete_currency' => 'Poista valuutta ":name"',
|
||||||
'newPiggyBank' => 'Luo uusi säästöpossu',
|
'newPiggyBank' => 'Luo uusi säästöpossu',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Poista linkki tapahtumien väliltä',
|
'delete_journal_link' => 'Poista linkki tapahtumien väliltä',
|
||||||
'edit_object_group' => 'Muokkaa ryhmää ":title"',
|
'edit_object_group' => 'Muokkaa ryhmää ":title"',
|
||||||
'delete_object_group' => 'Poista ryhmä ":title"',
|
'delete_object_group' => 'Poista ryhmä ":title"',
|
||||||
'logout_others' => 'Kirjaudu ulos muista istunnoista',
|
'logout_others' => 'Kirjaudu ulos muista istunnoista'
|
||||||
];
|
];
|
||||||
|
@ -34,7 +34,7 @@ return [
|
|||||||
'last_seven_days' => 'Viimeiset 7 päivää',
|
'last_seven_days' => 'Viimeiset 7 päivää',
|
||||||
'last_thirty_days' => 'Viimeiset 30 päivää',
|
'last_thirty_days' => 'Viimeiset 30 päivää',
|
||||||
'last_180_days' => 'Viimeiset 180 päivää',
|
'last_180_days' => 'Viimeiset 180 päivää',
|
||||||
'YTD' => 'YTD',
|
'YTD' => 'Vuoden alusta',
|
||||||
'welcome_back' => 'Mitä kuuluu?',
|
'welcome_back' => 'Mitä kuuluu?',
|
||||||
'everything' => 'Kaikki',
|
'everything' => 'Kaikki',
|
||||||
'today' => 'tänään',
|
'today' => 'tänään',
|
||||||
@ -246,7 +246,7 @@ return [
|
|||||||
'is_beta_warning' => 'Käytät BETA-versiota. Varaudu virheisiin ja ongelmiin.',
|
'is_beta_warning' => 'Käytät BETA-versiota. Varaudu virheisiin ja ongelmiin.',
|
||||||
'all_destination_accounts' => 'Kohdetilit',
|
'all_destination_accounts' => 'Kohdetilit',
|
||||||
'all_source_accounts' => 'Lähdetilit',
|
'all_source_accounts' => 'Lähdetilit',
|
||||||
'back_to_index' => 'Back to the index',
|
'back_to_index' => 'Takaisin valikkoon',
|
||||||
'cant_logout_guard' => 'Firefly III ei voi kirjata sinua ulos.',
|
'cant_logout_guard' => 'Firefly III ei voi kirjata sinua ulos.',
|
||||||
'external_url' => 'Ulkoinen URL',
|
'external_url' => 'Ulkoinen URL',
|
||||||
'internal_reference' => 'Sisäinen viite',
|
'internal_reference' => 'Sisäinen viite',
|
||||||
@ -285,28 +285,30 @@ return [
|
|||||||
'search_for_query' => 'Firefly III hakee tapahtumia kaikilla näillä hakusanoilla: <span class="text-info">:query</span>',
|
'search_for_query' => 'Firefly III hakee tapahtumia kaikilla näillä hakusanoilla: <span class="text-info">:query</span>',
|
||||||
'invalid_operators_list' => 'Nämä hakuparametrit eivät ole kelvollisia ja ne on ohitettu.',
|
'invalid_operators_list' => 'Nämä hakuparametrit eivät ole kelvollisia ja ne on ohitettu.',
|
||||||
'search_modifier_date_is' => 'Tapahtumapäivä on ":value"',
|
'search_modifier_date_is' => 'Tapahtumapäivä on ":value"',
|
||||||
'search_modifier_id' => 'Transaction ID is ":value"',
|
'search_modifier_id' => 'Tapahtuman tunniste on ":value"',
|
||||||
'search_modifier_date_before' => 'Transaction date is before or on ":value"',
|
'search_modifier_date_before' => 'Tapahtumapäivä on joko ":value" tai sitä ennen',
|
||||||
'search_modifier_date_after' => 'Transaction date is after or on ":value"',
|
'search_modifier_date_after' => 'Tapahtumapäivä on joko ":value" tai sen jälkeen',
|
||||||
'search_modifier_created_on' => 'Tapahtuma luotiin ":value"',
|
'search_modifier_created_on' => 'Tapahtuma luotiin ":value"',
|
||||||
'search_modifier_updated_on' => 'Tapahtuma on päivitetty viimeksi ":value"',
|
'search_modifier_updated_on' => 'Tapahtuma on päivitetty viimeksi ":value"',
|
||||||
'search_modifier_external_id' => 'External ID is ":value"',
|
'search_modifier_external_id' => 'Ulkoinen tunniste on ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Sisäinen viite on ":value"',
|
'search_modifier_internal_reference' => 'Sisäinen viite on ":value"',
|
||||||
'search_modifier_description_starts' => 'Kuvaus on ":value"',
|
'search_modifier_description_starts' => 'Kuvaus on ":value"',
|
||||||
'search_modifier_description_ends' => 'Kuvaus päättyy ":value"',
|
'search_modifier_description_ends' => 'Kuvaus päättyy ":value"',
|
||||||
'search_modifier_description_contains' => 'Kuvaus sisältää ":value"',
|
'search_modifier_description_contains' => 'Kuvaus sisältää ":value"',
|
||||||
'search_modifier_description_is' => 'Kuvaus on tarkalleen ":value"',
|
'search_modifier_description_is' => 'Kuvaus on tarkalleen ":value"',
|
||||||
'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"',
|
'search_modifier_currency_is' => 'Tapahtuman (ulkomaan) valuutta on ":value"',
|
||||||
'search_modifier_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":value"',
|
'search_modifier_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":value"',
|
||||||
'search_modifier_has_attachments' => 'Tapahtumalla on oltava liite',
|
'search_modifier_has_attachments' => 'Tapahtumalla on oltava liite',
|
||||||
'search_modifier_has_no_category' => 'Tapahtumalla ei saa olla kategoriaa',
|
'search_modifier_has_no_category' => 'Tapahtumalla ei saa olla kategoriaa',
|
||||||
'search_modifier_has_any_category' => 'The transaction must have a (any) category',
|
'search_modifier_has_any_category' => 'Tapahtumalla on oltava kategoria (mikä tahansa)',
|
||||||
'search_modifier_has_no_budget' => 'Tapahtumalla ei saa olla budjettia',
|
'search_modifier_has_no_budget' => 'Tapahtumalla ei saa olla budjettia',
|
||||||
'search_modifier_has_any_budget' => 'Tapahtumalla on oltava budjetti',
|
'search_modifier_has_any_budget' => 'Tapahtumalla on oltava budjetti',
|
||||||
'search_modifier_has_no_bill' => 'Tapahtumalla ei saa olla laskua',
|
'search_modifier_has_no_bill' => 'Tapahtumalla ei saa olla laskua',
|
||||||
'search_modifier_has_any_bill' => 'The transaction must have a (any) bill',
|
'search_modifier_has_any_bill' => 'Tapahtumalla on oltava lasku (mikä tahansa)',
|
||||||
'search_modifier_has_no_tag' => 'Tapahtumalla ei saa olla tageja',
|
'search_modifier_has_no_tag' => 'Tapahtumalla ei saa olla tageja',
|
||||||
'search_modifier_has_any_tag' => 'The transaction must have a (any) tag',
|
'search_modifier_has_any_tag' => 'Tapahtumalla on oltava tagi (mikä tahansa)',
|
||||||
'search_modifier_notes_contain' => 'Tapahtumamerkinnät sisältävät ":value"',
|
'search_modifier_notes_contain' => 'Tapahtumamerkinnät sisältävät ":value"',
|
||||||
'search_modifier_notes_start' => 'Tapahtumamerkinnät alkavat ":value"',
|
'search_modifier_notes_start' => 'Tapahtumamerkinnät alkavat ":value"',
|
||||||
'search_modifier_notes_end' => 'Tapahtumamerkinnät päättyvät ":value"',
|
'search_modifier_notes_end' => 'Tapahtumamerkinnät päättyvät ":value"',
|
||||||
@ -336,24 +338,24 @@ return [
|
|||||||
'search_modifier_destination_account_nr_contains' => 'Kohdetilin numero (IBAN) sisältää ":value"',
|
'search_modifier_destination_account_nr_contains' => 'Kohdetilin numero (IBAN) sisältää ":value"',
|
||||||
'search_modifier_destination_account_nr_starts' => 'Kohdetilin numero (IBAN) alkaa ":value"',
|
'search_modifier_destination_account_nr_starts' => 'Kohdetilin numero (IBAN) alkaa ":value"',
|
||||||
'search_modifier_destination_account_nr_ends' => 'Kohdetilin numero (IBAN) päättyy ":value"',
|
'search_modifier_destination_account_nr_ends' => 'Kohdetilin numero (IBAN) päättyy ":value"',
|
||||||
'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value',
|
'search_modifier_account_id' => 'Lähde- tai kohdetilin tunnus on/tunnukset ovat: :value',
|
||||||
'search_modifier_category_is' => 'Kategoria on ":value"',
|
'search_modifier_category_is' => 'Kategoria on ":value"',
|
||||||
'search_modifier_budget_is' => 'Budjetti on ":value"',
|
'search_modifier_budget_is' => 'Budjetti on ":value"',
|
||||||
'search_modifier_bill_is' => 'Lasku on ":value"',
|
'search_modifier_bill_is' => 'Lasku on ":value"',
|
||||||
'search_modifier_transaction_type' => 'Tapahtuman tyyppi on ":value"',
|
'search_modifier_transaction_type' => 'Tapahtuman tyyppi on ":value"',
|
||||||
'search_modifier_tag_is' => 'Tägi on ":value"',
|
'search_modifier_tag_is' => 'Tägi on ":value"',
|
||||||
'search_modifier_date_is_year' => 'Tapahtuma on vuonna ":value"',
|
'search_modifier_date_is_year' => 'Tapahtuma on vuonna ":value"',
|
||||||
'search_modifier_date_is_month' => 'Transaction is in month ":value"',
|
'search_modifier_date_is_month' => 'Tapahtuman kuukausi on ":value"',
|
||||||
'search_modifier_date_is_day' => 'Transaction is on day of month ":value"',
|
'search_modifier_date_is_day' => 'Tapahtuman kuukauden päivä on ":value"',
|
||||||
'search_modifier_date_before_year' => 'Transaction is before or in year ":value"',
|
'search_modifier_date_before_year' => 'Tapahtuman vuosi on joko ":value" tai sitä ennen',
|
||||||
'search_modifier_date_before_month' => 'Transaction is before or in month ":value"',
|
'search_modifier_date_before_month' => 'Tapahtuman kuukausi on joko ":value" tai sitä ennen',
|
||||||
'search_modifier_date_before_day' => 'Transaction before or on day of month ":value"',
|
'search_modifier_date_before_day' => 'Tapahtuman kuukauden päivä on joko ":value" tai sitä ennen',
|
||||||
'search_modifier_date_after_year' => 'Transaction is in or after year ":value"',
|
'search_modifier_date_after_year' => 'Tapahtuman vuosi on joko ":value" tai sen jälkeen',
|
||||||
'search_modifier_date_after_month' => 'Transaction is in or after month ":value"',
|
'search_modifier_date_after_month' => 'Tapahtuman kuukausi on joko ":value" tai sen jälkeen',
|
||||||
'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"',
|
'search_modifier_date_after_day' => 'Tapahtuman kuukauden päivä on joko ":value" tai sen jälkeen',
|
||||||
'update_rule_from_query' => 'Päivitä sääntö ":rule" hausta',
|
'update_rule_from_query' => 'Päivitä sääntö ":rule" hausta',
|
||||||
'create_rule_from_query' => 'Luo uusi sääntö hausta',
|
'create_rule_from_query' => 'Luo uusi sääntö hausta',
|
||||||
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
|
'rule_from_search_words' => 'Sääntömoottorilla on vaikeuksia käsitellä ":string". Ehdotettu sääntö, joka sopii hakuusi, voi antaa erilaisia tuloksia. Tarkista säännön ehdot huolellisesti.',
|
||||||
|
|
||||||
|
|
||||||
// END
|
// END
|
||||||
@ -434,7 +436,7 @@ return [
|
|||||||
'apply_rule_selection_intro' => 'Säännöt kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan sen myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun päivität sääntöä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.',
|
'apply_rule_selection_intro' => 'Säännöt kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan sen myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun päivität sääntöä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.',
|
||||||
'include_transactions_from_accounts' => 'Sisällytä tapahtumat näiltä tileiltä',
|
'include_transactions_from_accounts' => 'Sisällytä tapahtumat näiltä tileiltä',
|
||||||
'include' => 'Sisällytä?',
|
'include' => 'Sisällytä?',
|
||||||
'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".',
|
'applied_rule_selection' => '{0} Sääntö ":title" ei muuttanut yhtään tapahtumaa valinnastasi.|[1] Yhtä valintasi tapahtumaa muutettiin säännöllä ":title".|[2,*] :count tapahtumaa valinnastasi muutettiin säännöllä ":title".',
|
||||||
'execute' => 'Suorita',
|
'execute' => 'Suorita',
|
||||||
'apply_rule_group_selection' => 'Aja sääntöryhmä ":title" valituille tapahtumille',
|
'apply_rule_group_selection' => 'Aja sääntöryhmä ":title" valituille tapahtumille',
|
||||||
'apply_rule_group_selection_intro' => 'Sääntöryhmät kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan kaikki ryhmän säännöt myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun olet päivittänyt ryhmän sääntöjä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.',
|
'apply_rule_group_selection_intro' => 'Sääntöryhmät kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan kaikki ryhmän säännöt myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun olet päivittänyt ryhmän sääntöjä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.',
|
||||||
@ -450,12 +452,12 @@ return [
|
|||||||
'rule_trigger_source_account_is' => 'Lähdetilin nimi on ":trigger_value"',
|
'rule_trigger_source_account_is' => 'Lähdetilin nimi on ":trigger_value"',
|
||||||
'rule_trigger_source_account_contains_choice' => 'Lähdetilin nimi sisältää..',
|
'rule_trigger_source_account_contains_choice' => 'Lähdetilin nimi sisältää..',
|
||||||
'rule_trigger_source_account_contains' => 'Lähdetilin nimi sisältää ":trigger_value"',
|
'rule_trigger_source_account_contains' => 'Lähdetilin nimi sisältää ":trigger_value"',
|
||||||
'rule_trigger_account_id_choice' => 'Account ID (source/destination) is exactly..',
|
'rule_trigger_account_id_choice' => 'Tilin tunniste (lähde/kohde) on tarkalleen..',
|
||||||
'rule_trigger_account_id' => 'Account ID (source/destination) is exactly :trigger_value',
|
'rule_trigger_account_id' => 'Tilin tunniste (lähde/kohde) on täsmälleen :trigger_value',
|
||||||
'rule_trigger_source_account_id_choice' => 'Lähdetili ID on tarkalleen..',
|
'rule_trigger_source_account_id_choice' => 'Lähdetili ID on tarkalleen..',
|
||||||
'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value',
|
'rule_trigger_source_account_id' => 'Lähdetilin tunniste on täsmälleen :trigger_value',
|
||||||
'rule_trigger_destination_account_id_choice' => 'Kohdetilin ID on tarkalleen..',
|
'rule_trigger_destination_account_id_choice' => 'Kohdetilin ID on tarkalleen..',
|
||||||
'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value',
|
'rule_trigger_destination_account_id' => 'Kohdetilin tunniste on täsmälleen :trigger_value',
|
||||||
'rule_trigger_account_is_cash_choice' => 'Tili (lähde/kohde) on (käteis) tili',
|
'rule_trigger_account_is_cash_choice' => 'Tili (lähde/kohde) on (käteis) tili',
|
||||||
'rule_trigger_account_is_cash' => 'Tili (lähde/kohde) on (käteis) tili',
|
'rule_trigger_account_is_cash' => 'Tili (lähde/kohde) on (käteis) tili',
|
||||||
'rule_trigger_source_is_cash_choice' => 'Lähdetili on (käteis) tili',
|
'rule_trigger_source_is_cash_choice' => 'Lähdetili on (käteis) tili',
|
||||||
@ -508,12 +510,12 @@ return [
|
|||||||
'rule_trigger_date_is' => 'Tapahtumapäivä on ":trigger_value"',
|
'rule_trigger_date_is' => 'Tapahtumapäivä on ":trigger_value"',
|
||||||
'rule_trigger_date_before_choice' => 'Tapahtumapäivä on ennen..',
|
'rule_trigger_date_before_choice' => 'Tapahtumapäivä on ennen..',
|
||||||
'rule_trigger_date_before' => 'Tapahtumapäivä on ennen: ":trigger_value"',
|
'rule_trigger_date_before' => 'Tapahtumapäivä on ennen: ":trigger_value"',
|
||||||
'rule_trigger_date_after_choice' => 'Transaction date is after..',
|
'rule_trigger_date_after_choice' => 'Tapahtumapäivä on jälkeen..',
|
||||||
'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"',
|
'rule_trigger_date_after' => 'Tapahtumapäivä on jälkeen: ":trigger_value"',
|
||||||
'rule_trigger_created_on_choice' => 'Tapahtuma on tehty..',
|
'rule_trigger_created_on_choice' => 'Tapahtuma on tehty..',
|
||||||
'rule_trigger_created_on' => 'Transaction was made on ":trigger_value"',
|
'rule_trigger_created_on' => 'Tapahtuma tehtiin ":trigger_value"',
|
||||||
'rule_trigger_updated_on_choice' => 'Tapahtumaa muokattiin viimeksi..',
|
'rule_trigger_updated_on_choice' => 'Tapahtumaa muokattiin viimeksi..',
|
||||||
'rule_trigger_updated_on' => 'Transaction was last edited on ":trigger_value"',
|
'rule_trigger_updated_on' => 'Tapahtumaa on viimeksi muokattu ":trigger_value"',
|
||||||
'rule_trigger_budget_is_choice' => 'Budjetti on ...',
|
'rule_trigger_budget_is_choice' => 'Budjetti on ...',
|
||||||
'rule_trigger_budget_is' => 'Budjetti on ":trigger_value"',
|
'rule_trigger_budget_is' => 'Budjetti on ":trigger_value"',
|
||||||
'rule_trigger_tag_is_choice' => 'Tägi on ...',
|
'rule_trigger_tag_is_choice' => 'Tägi on ...',
|
||||||
@ -521,7 +523,7 @@ return [
|
|||||||
'rule_trigger_currency_is_choice' => 'Tapahtuman valuutta on ...',
|
'rule_trigger_currency_is_choice' => 'Tapahtuman valuutta on ...',
|
||||||
'rule_trigger_currency_is' => 'Tapahtuman valuutta on ":trigger_value"',
|
'rule_trigger_currency_is' => 'Tapahtuman valuutta on ":trigger_value"',
|
||||||
'rule_trigger_foreign_currency_is_choice' => 'Tapahtuman valuutta on..',
|
'rule_trigger_foreign_currency_is_choice' => 'Tapahtuman valuutta on..',
|
||||||
'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"',
|
'rule_trigger_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":trigger_value"',
|
||||||
'rule_trigger_has_attachments_choice' => 'Tapahtumalla on vähintään näin monta liitettä',
|
'rule_trigger_has_attachments_choice' => 'Tapahtumalla on vähintään näin monta liitettä',
|
||||||
'rule_trigger_has_attachments' => 'On vähintään :trigger_value liitettä',
|
'rule_trigger_has_attachments' => 'On vähintään :trigger_value liitettä',
|
||||||
'rule_trigger_store_journal' => 'Kun tapahtuma luodaan',
|
'rule_trigger_store_journal' => 'Kun tapahtuma luodaan',
|
||||||
@ -536,8 +538,8 @@ return [
|
|||||||
'rule_trigger_has_any_budget' => 'Tapahtumalla on budjetti (mikä tahansa)',
|
'rule_trigger_has_any_budget' => 'Tapahtumalla on budjetti (mikä tahansa)',
|
||||||
'rule_trigger_has_no_bill_choice' => 'Ei laskua',
|
'rule_trigger_has_no_bill_choice' => 'Ei laskua',
|
||||||
'rule_trigger_has_no_bill' => 'Tapahtumalla ei ole laskua',
|
'rule_trigger_has_no_bill' => 'Tapahtumalla ei ole laskua',
|
||||||
'rule_trigger_has_any_bill_choice' => 'Has a (any) bill',
|
'rule_trigger_has_any_bill_choice' => 'On lasku (mikä tahansa)',
|
||||||
'rule_trigger_has_any_bill' => 'Transaction has a (any) bill',
|
'rule_trigger_has_any_bill' => 'Tapahtumalla on lasku (mikä tahansa)',
|
||||||
'rule_trigger_has_no_tag_choice' => 'Ei tägejä',
|
'rule_trigger_has_no_tag_choice' => 'Ei tägejä',
|
||||||
'rule_trigger_has_no_tag' => 'Tapahtumalla ei ole tägejä',
|
'rule_trigger_has_no_tag' => 'Tapahtumalla ei ole tägejä',
|
||||||
'rule_trigger_has_any_tag_choice' => 'On tägi/tägejä (mitä tahansa)',
|
'rule_trigger_has_any_tag_choice' => 'On tägi/tägejä (mitä tahansa)',
|
||||||
@ -556,12 +558,14 @@ return [
|
|||||||
'rule_trigger_notes_end' => 'Muistiinpano loppuu tekstiin ":trigger_value"',
|
'rule_trigger_notes_end' => 'Muistiinpano loppuu tekstiin ":trigger_value"',
|
||||||
'rule_trigger_bill_is_choice' => 'Lasku on..',
|
'rule_trigger_bill_is_choice' => 'Lasku on..',
|
||||||
'rule_trigger_bill_is' => 'Lasku on ":trigger_value"',
|
'rule_trigger_bill_is' => 'Lasku on ":trigger_value"',
|
||||||
'rule_trigger_external_id_choice' => 'External ID is..',
|
'rule_trigger_external_id_choice' => 'Ulkoinen tunnus on..',
|
||||||
'rule_trigger_external_id' => 'External ID is ":trigger_value"',
|
'rule_trigger_external_id' => 'Ulkoinen tunnus on ":trigger_value"',
|
||||||
'rule_trigger_internal_reference_choice' => 'Sisäinen viite on..',
|
'rule_trigger_internal_reference_choice' => 'Sisäinen viite on..',
|
||||||
'rule_trigger_internal_reference' => 'Sisäinen viite on ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Sisäinen viite on ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
'rule_trigger_journal_id_choice' => 'Tapahtumatietueen tunnus on..',
|
||||||
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Tapahtumatietueen tunnus on ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'POISTA tapahtuma (!)',
|
'rule_action_delete_transaction_choice' => 'POISTA tapahtuma (!)',
|
||||||
@ -654,13 +658,13 @@ return [
|
|||||||
'pref_3M' => 'Kolme kuukautta (vuosineljännes)',
|
'pref_3M' => 'Kolme kuukautta (vuosineljännes)',
|
||||||
'pref_6M' => 'Kuusi kuukautta',
|
'pref_6M' => 'Kuusi kuukautta',
|
||||||
'pref_1Y' => 'Yksi vuosi',
|
'pref_1Y' => 'Yksi vuosi',
|
||||||
'pref_last365' => 'Last year',
|
'pref_last365' => 'Edellinen vuosi',
|
||||||
'pref_last90' => 'Viimeiset 90 päivää',
|
'pref_last90' => 'Viimeiset 90 päivää',
|
||||||
'pref_last30' => 'Viimeiset 30 päivää',
|
'pref_last30' => 'Viimeiset 30 päivää',
|
||||||
'pref_last7' => 'Viimeiset 7 päivää',
|
'pref_last7' => 'Viimeiset 7 päivää',
|
||||||
'pref_YTD' => 'Year to date',
|
'pref_YTD' => 'Vuoden alusta',
|
||||||
'pref_QTD' => 'Quarter to date',
|
'pref_QTD' => 'Neljännesvuoden alusta',
|
||||||
'pref_MTD' => 'Month to date',
|
'pref_MTD' => 'Kuukauden alusta',
|
||||||
'pref_languages' => 'Kielet',
|
'pref_languages' => 'Kielet',
|
||||||
'pref_locale' => 'Alueasetukset',
|
'pref_locale' => 'Alueasetukset',
|
||||||
'pref_languages_help' => 'Firefly III tukee useita kieliä. Mitä niistä haluat käyttää?',
|
'pref_languages_help' => 'Firefly III tukee useita kieliä. Mitä niistä haluat käyttää?',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Sisäinen viite',
|
'pref_optional_tj_internal_reference' => 'Sisäinen viite',
|
||||||
'pref_optional_tj_notes' => 'Muistiinpanot',
|
'pref_optional_tj_notes' => 'Muistiinpanot',
|
||||||
'pref_optional_tj_attachments' => 'Liitteet',
|
'pref_optional_tj_attachments' => 'Liitteet',
|
||||||
'pref_optional_tj_external_uri' => 'Ulkoinen URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Sijainti',
|
'pref_optional_tj_location' => 'Sijainti',
|
||||||
'pref_optional_tj_links' => 'Tapahtuman linkit',
|
'pref_optional_tj_links' => 'Tapahtuman linkit',
|
||||||
'optional_field_meta_dates' => 'Päivämäärät',
|
'optional_field_meta_dates' => 'Päivämäärät',
|
||||||
'optional_field_meta_business' => 'Yritys',
|
'optional_field_meta_business' => 'Yritys',
|
||||||
'optional_field_attachments' => 'Liitteet',
|
'optional_field_attachments' => 'Liitteet',
|
||||||
'optional_field_meta_data' => 'Valinnainen metatieto',
|
'optional_field_meta_data' => 'Valinnainen metatieto',
|
||||||
'external_uri' => 'Ulkoinen URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Poista tiedot',
|
'delete_stuff_header' => 'Poista tiedot',
|
||||||
@ -731,7 +735,7 @@ return [
|
|||||||
'delete_all_piggy_banks' => 'Poista KAIKKI säästöpossusi',
|
'delete_all_piggy_banks' => 'Poista KAIKKI säästöpossusi',
|
||||||
'delete_all_rules' => 'Poista KAIKKI sääntösi',
|
'delete_all_rules' => 'Poista KAIKKI sääntösi',
|
||||||
'delete_all_recurring' => 'Poista KAIKKI toistuvat tapahtumasi',
|
'delete_all_recurring' => 'Poista KAIKKI toistuvat tapahtumasi',
|
||||||
'delete_all_object_groups' => 'Delete ALL your object groups',
|
'delete_all_object_groups' => 'Poista KAIKKI objektiryhmät',
|
||||||
'delete_all_accounts' => 'Poista KAIKKI tilisi',
|
'delete_all_accounts' => 'Poista KAIKKI tilisi',
|
||||||
'delete_all_asset_accounts' => 'Poista KAIKKI tulotilisi',
|
'delete_all_asset_accounts' => 'Poista KAIKKI tulotilisi',
|
||||||
'delete_all_expense_accounts' => 'Poista KAIKKI kulutilisi',
|
'delete_all_expense_accounts' => 'Poista KAIKKI kulutilisi',
|
||||||
@ -809,17 +813,17 @@ return [
|
|||||||
'profile_oauth_edit_client' => 'Muokkaa asiakasta',
|
'profile_oauth_edit_client' => 'Muokkaa asiakasta',
|
||||||
'profile_oauth_name_help' => 'Jotain käyttäjillesi tuttua ja luotettavaa.',
|
'profile_oauth_name_help' => 'Jotain käyttäjillesi tuttua ja luotettavaa.',
|
||||||
'profile_oauth_redirect_url' => 'URL:n uudelleenohjaus',
|
'profile_oauth_redirect_url' => 'URL:n uudelleenohjaus',
|
||||||
'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.',
|
'profile_oauth_redirect_url_help' => 'Sovelluksesi valtuutuksen callback URL.',
|
||||||
'profile_authorized_apps' => 'Valtuutetut sovellukset',
|
'profile_authorized_apps' => 'Valtuutetut sovellukset',
|
||||||
'profile_authorized_clients' => 'Valtuutetut asiakkaat',
|
'profile_authorized_clients' => 'Valtuutetut asiakkaat',
|
||||||
'profile_scopes' => 'Scopes',
|
'profile_scopes' => 'Aihepiirit',
|
||||||
'profile_revoke' => 'Peruuta',
|
'profile_revoke' => 'Peruuta',
|
||||||
'profile_oauth_client_secret_title' => 'Client Secret',
|
'profile_oauth_client_secret_title' => 'Asiakkaan salausavain (Client secret)',
|
||||||
'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.',
|
'profile_oauth_client_secret_expl' => 'Tässä on uusi asiakkaan salausavaimesi. Tämä on ainoa kerta kun se näytetään, joten älä hukkaa sitä! Voit nyt käyttää tätä avainta tehdäksesi API komentoja.',
|
||||||
'profile_personal_access_tokens' => 'Henkilökohtaiset Käyttöoikeuskoodit',
|
'profile_personal_access_tokens' => 'Henkilökohtaiset Käyttöoikeuskoodit',
|
||||||
'profile_personal_access_token' => 'Henkilökohtainen Käyttöoikeuskoodi',
|
'profile_personal_access_token' => 'Henkilökohtainen Käyttöoikeuskoodi',
|
||||||
'profile_oauth_confidential' => 'Luottamuksellinen',
|
'profile_oauth_confidential' => 'Luottamuksellinen',
|
||||||
'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.',
|
'profile_oauth_confidential_help' => 'Vaadi asiakasta tunnistautumaan salausavaimella. Luotettavat asiakkaat pystyvät ylläpitämään käyttäjätunnuksia turvallisella tavalla paljastamatta niitä luvattomille osapuolille. Julkiset sovellukset, kuten natiivi työpöytä tai JavaScript SPA sovellukset, eivät pysty pitämään salausavaimia tietoturvallisesti.',
|
||||||
'profile_personal_access_token_explanation' => 'Tässä on uusi henkilökohtainen pääsytunnuksesi. Tämä on ainoa kerta, kun se näytetään, joten älä hävitä sitä! Voit nyt käyttää tätä tunnusta tehdäksesi API-pyyntöjä.',
|
'profile_personal_access_token_explanation' => 'Tässä on uusi henkilökohtainen pääsytunnuksesi. Tämä on ainoa kerta, kun se näytetään, joten älä hävitä sitä! Voit nyt käyttää tätä tunnusta tehdäksesi API-pyyntöjä.',
|
||||||
'profile_no_personal_access_token' => 'Et ole luonut henkilökohtaisia käyttöoikeustunnuksia.',
|
'profile_no_personal_access_token' => 'Et ole luonut henkilökohtaisia käyttöoikeustunnuksia.',
|
||||||
'profile_create_new_token' => 'Luo uusi tunnus',
|
'profile_create_new_token' => 'Luo uusi tunnus',
|
||||||
@ -887,14 +891,14 @@ return [
|
|||||||
'convert_please_set_asset_destination' => 'Valitse omaisuustili jonne raha menee.',
|
'convert_please_set_asset_destination' => 'Valitse omaisuustili jonne raha menee.',
|
||||||
'convert_please_set_expense_destination' => 'Valitse kulutustili jonne raha menee.',
|
'convert_please_set_expense_destination' => 'Valitse kulutustili jonne raha menee.',
|
||||||
'convert_please_set_asset_source' => 'Valitse omaisuustili jolta raha tulee.',
|
'convert_please_set_asset_source' => 'Valitse omaisuustili jolta raha tulee.',
|
||||||
'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.',
|
'convert_expl_w_d' => 'Kun nosto muunnetaan talletukseksi, summa talletetaan näytettävälle kohdetilille sen sijaan, että ne poistettaisiin siltä.|Kun nosto muunnetaan talletukseksi, summa talletetaan näytettäville määrätileille sen sijaan, että se poistettaisiin niiltä.',
|
||||||
'convert_expl_w_t' => 'Kun nosto muutetaan siirroksi, raha siirretään pois lähdetililtä muuhun omaisuuserään tai velkaan liittyvälle tilille sen sijaan, että se käytettäisiin alkuperäiseen kulutiliin.|Kun nosto muutetaan siirroksi, raha siirretään pois lähdetileiltä muihin omaisuus- tai velkatileihin sen sijaan, että se käytettäisiin alkuperäisiin kulutileihin.',
|
'convert_expl_w_t' => 'Kun nosto muutetaan siirroksi, raha siirretään pois lähdetililtä muuhun omaisuuserään tai velkaan liittyvälle tilille sen sijaan, että se käytettäisiin alkuperäiseen kulutiliin.|Kun nosto muutetaan siirroksi, raha siirretään pois lähdetileiltä muihin omaisuus- tai velkatileihin sen sijaan, että se käytettäisiin alkuperäisiin kulutileihin.',
|
||||||
'convert_expl_d_w' => 'Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyltä lähdetililtä sen sijaan, että ne talletettaisiin sille.|Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyiltä lähdetileiltä sen sijaan, että ne talletettaisiin niille.',
|
'convert_expl_d_w' => 'Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyltä lähdetililtä sen sijaan, että ne talletettaisiin sille.|Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyiltä lähdetileiltä sen sijaan, että ne talletettaisiin niille.',
|
||||||
'convert_expl_d_t' => 'Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetilille miltä tahansa omaisuus- tai velkatililtäsi.|Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetileille miltä tahansa omaisuus- tai velkatileiltäsi.',
|
'convert_expl_d_t' => 'Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetilille miltä tahansa omaisuus- tai velkatililtäsi.|Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetileille miltä tahansa omaisuus- tai velkatileiltäsi.',
|
||||||
'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.',
|
'convert_expl_t_w' => 'Kun muunnat siirron nostoksi, rahat talletetaan kohdetilille, jonka olet määrittänyt täällä, sen sijaan, että ne siirrettäisiin pois.|Kun muunnat siirron nostoksi, rahat talletetaan kohdetileille, jotka olet määrittänyt täällä, sen sijaan, että ne siirrettäisiin pois.',
|
||||||
'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.',
|
'convert_expl_t_d' => 'Kun muunnat siirron talletukseksi, summa talletetaan kohdetilille, jonka näet täällä, sen sijaan että se siirrettäisiin sille.|Kun muunnat siirron talletukseksi, summa talletetaan kohdetileille, jotka näet täällä, sen sijaan että se siirrettäisiin niille.',
|
||||||
'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.',
|
'convert_select_sources' => 'Viimeistelläksesi muuntamisen, aseta alla uusi lähdetili.|Viimeistelläksesi muuntamisen, aseta alla uudet lähdetilit.',
|
||||||
'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.',
|
'convert_select_destinations' => 'Viimeistelläksesi muuntamisen, valitse alta uusi kohdetili.|Viimeistelläksesi muuntamisen, valitse alta uudet kohdetilit.',
|
||||||
'converted_to_Withdrawal' => 'Tapahtuma on muutettu nostoksi',
|
'converted_to_Withdrawal' => 'Tapahtuma on muutettu nostoksi',
|
||||||
'converted_to_Deposit' => 'Tapahtuma on muutettu talletukseksi',
|
'converted_to_Deposit' => 'Tapahtuma on muutettu talletukseksi',
|
||||||
'converted_to_Transfer' => 'Tapahtuma on muutettu siirroksi',
|
'converted_to_Transfer' => 'Tapahtuma on muutettu siirroksi',
|
||||||
@ -959,7 +963,7 @@ return [
|
|||||||
'quarterly_budgets' => 'Neljännesvuosittaiset budjetit',
|
'quarterly_budgets' => 'Neljännesvuosittaiset budjetit',
|
||||||
'half_year_budgets' => 'Puolivuosittaiset budjetit',
|
'half_year_budgets' => 'Puolivuosittaiset budjetit',
|
||||||
'yearly_budgets' => 'Vuosittaiset budjetit',
|
'yearly_budgets' => 'Vuosittaiset budjetit',
|
||||||
'other_budgets' => 'Custom timed budgets',
|
'other_budgets' => 'Mukautetun ajan budjetit',
|
||||||
'budget_limit_not_in_range' => 'Tämä summa on voimassa välillä :start - :end:',
|
'budget_limit_not_in_range' => 'Tämä summa on voimassa välillä :start - :end:',
|
||||||
'total_available_budget' => 'Budjetissa jäljellä (välillä :start ja :end)',
|
'total_available_budget' => 'Budjetissa jäljellä (välillä :start ja :end)',
|
||||||
'total_available_budget_in_currency' => 'Budjetissa jäljellä valuutassa :currency',
|
'total_available_budget_in_currency' => 'Budjetissa jäljellä valuutassa :currency',
|
||||||
@ -1036,7 +1040,7 @@ return [
|
|||||||
'store_new_bill' => 'Tallenna uusi lasku',
|
'store_new_bill' => 'Tallenna uusi lasku',
|
||||||
'stored_new_bill' => 'Tallennettiin uusi lasku ":name"',
|
'stored_new_bill' => 'Tallennettiin uusi lasku ":name"',
|
||||||
'cannot_scan_inactive_bill' => 'Käytöstä poistetuille laskuille ei tehdä sääntövertailua.',
|
'cannot_scan_inactive_bill' => 'Käytöstä poistetuille laskuille ei tehdä sääntövertailua.',
|
||||||
'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.',
|
'rescanned_bill' => 'Kaikki skannattiin uudelleen ja linkitettiin :count tapahtuma laskuun.|Kaikki skannattiin uudelleen ja linkitettiin :count tapahtumaa laskuun.',
|
||||||
'average_bill_amount_year' => 'Laskun summa keskimäärin (:year)',
|
'average_bill_amount_year' => 'Laskun summa keskimäärin (:year)',
|
||||||
'average_bill_amount_overall' => 'Laskun summa keskimäärin (kaikenkaikkiaan)',
|
'average_bill_amount_overall' => 'Laskun summa keskimäärin (kaikenkaikkiaan)',
|
||||||
'bill_is_active' => 'Lasku on aktiivinen',
|
'bill_is_active' => 'Lasku on aktiivinen',
|
||||||
@ -1046,12 +1050,12 @@ return [
|
|||||||
'bill_store_error' => 'Uuden laskusi tallentamisessa tapahtui odottamaton virhe. Virhe kirjattiin lokitiedostoon.',
|
'bill_store_error' => 'Uuden laskusi tallentamisessa tapahtui odottamaton virhe. Virhe kirjattiin lokitiedostoon.',
|
||||||
'list_inactive_rule' => 'käytöstä poistettu sääntö',
|
'list_inactive_rule' => 'käytöstä poistettu sääntö',
|
||||||
'bill_edit_rules' => 'Firefly III yrittää muokata myös tähän laskuun liittyvää sääntöä. Jos kuitenkin olet muokannut tätä sääntöä itse, Firefly III ei muuta mitään. Firefly III yrittää muokata myös tähän laskuun liittyviä :count sääntöä. Jos kuitenkin olet muokannut näitä sääntöjä itse, Firefly III ei muuta mitään.',
|
'bill_edit_rules' => 'Firefly III yrittää muokata myös tähän laskuun liittyvää sääntöä. Jos kuitenkin olet muokannut tätä sääntöä itse, Firefly III ei muuta mitään. Firefly III yrittää muokata myös tähän laskuun liittyviä :count sääntöä. Jos kuitenkin olet muokannut näitä sääntöjä itse, Firefly III ei muuta mitään.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Odotettavissa :date',
|
||||||
'bill_expected_date_js' => 'Expected {date}',
|
'bill_expected_date_js' => 'Odotettavissa {date}',
|
||||||
'bill_paid_on' => 'Maksettu {date}',
|
'bill_paid_on' => 'Maksettu {date}',
|
||||||
'bill_repeats_weekly' => 'Toistuu viikoittain',
|
'bill_repeats_weekly' => 'Toistuu viikoittain',
|
||||||
'bill_repeats_monthly' => 'Toistuu kuukausittain',
|
'bill_repeats_monthly' => 'Toistuu kuukausittain',
|
||||||
'bill_repeats_quarterly' => 'Repeats quarterly',
|
'bill_repeats_quarterly' => 'Toistuu neljännesvuosittain',
|
||||||
'bill_repeats_half-year' => 'Toistuu puolen vuoden välein',
|
'bill_repeats_half-year' => 'Toistuu puolen vuoden välein',
|
||||||
'bill_repeats_yearly' => 'Toistuu vuosittain',
|
'bill_repeats_yearly' => 'Toistuu vuosittain',
|
||||||
'bill_repeats_weekly_other' => 'Toistuu joka toinen viikko',
|
'bill_repeats_weekly_other' => 'Toistuu joka toinen viikko',
|
||||||
@ -1069,11 +1073,11 @@ return [
|
|||||||
'extension_date_is' => 'Laajennuksen päivämäärä on {date}',
|
'extension_date_is' => 'Laajennuksen päivämäärä on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'Sinulla on :count passiivinen (arkistoitu) tili, jota voit tarkastella tällä erillisellä sivulla.|Sinulla on :count passiivista (arkistoitua) tiliä, joita voit tarkastella tällä erillisellä sivulla.',
|
||||||
'all_accounts_inactive' => 'Nämä ovat käytöstä poistettuja tilejä.',
|
'all_accounts_inactive' => 'Nämä ovat käytöstä poistettuja tilejä.',
|
||||||
'active_account_link' => 'Tämä linkki vie sinut takaisin aktiivisiin tileihisi.',
|
'active_account_link' => 'Tämä linkki vie sinut takaisin aktiivisiin tileihisi.',
|
||||||
'account_missing_transaction' => 'Tiliä #:id (":name") ei voi tarkastella suoraan, mutta Firefly:lta puuttuvat uudelleenohjaustiedot.',
|
'account_missing_transaction' => 'Tiliä #:id (":name") ei voi tarkastella suoraan, mutta Firefly:lta puuttuvat uudelleenohjaustiedot.',
|
||||||
'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.',
|
'cc_monthly_payment_date_help' => 'Valitse mikä tahansa vuosi ja mikä tahansa kuukausi, ne jätetään kuitenkin huomiotta. Vain kuukauden päivä on merkityksellinen.',
|
||||||
'details_for_asset' => 'Yksityiskohdat omaisuustilille ":name"',
|
'details_for_asset' => 'Yksityiskohdat omaisuustilille ":name"',
|
||||||
'details_for_expense' => 'Yksityiskohdat kulutustilille ":name"',
|
'details_for_expense' => 'Yksityiskohdat kulutustilille ":name"',
|
||||||
'details_for_revenue' => 'Yksityiskohdat tuottotilille ":name"',
|
'details_for_revenue' => 'Yksityiskohdat tuottotilille ":name"',
|
||||||
@ -1089,7 +1093,7 @@ return [
|
|||||||
'delete_revenue_account' => 'Poista tuottotili ":name"',
|
'delete_revenue_account' => 'Poista tuottotili ":name"',
|
||||||
'delete_liabilities_account' => 'Poista velka ":name"',
|
'delete_liabilities_account' => 'Poista velka ":name"',
|
||||||
'asset_deleted' => 'Poistettiin onnistuneesti omaisuustili ":name"',
|
'asset_deleted' => 'Poistettiin onnistuneesti omaisuustili ":name"',
|
||||||
'account_deleted' => 'Successfully deleted account ":name"',
|
'account_deleted' => 'Tilin ":name" poistaminen onnistui',
|
||||||
'expense_deleted' => 'Poistettiin onnistuneesti kulutustili ":name"',
|
'expense_deleted' => 'Poistettiin onnistuneesti kulutustili ":name"',
|
||||||
'revenue_deleted' => 'Poistettiin onnistuneesti tuottotili ":name"',
|
'revenue_deleted' => 'Poistettiin onnistuneesti tuottotili ":name"',
|
||||||
'update_asset_account' => 'Päivitä omaisuustili',
|
'update_asset_account' => 'Päivitä omaisuustili',
|
||||||
@ -1106,7 +1110,7 @@ return [
|
|||||||
'expense_accounts' => 'Kulutustilit',
|
'expense_accounts' => 'Kulutustilit',
|
||||||
'expense_accounts_inactive' => 'Kulutustilit (ei käytössä)',
|
'expense_accounts_inactive' => 'Kulutustilit (ei käytössä)',
|
||||||
'revenue_accounts' => 'Tuottotilit',
|
'revenue_accounts' => 'Tuottotilit',
|
||||||
'revenue_accounts_inactive' => 'Revenue accounts (inactive)',
|
'revenue_accounts_inactive' => 'Tuottotilit (ei käytössä)',
|
||||||
'cash_accounts' => 'Käteistilit',
|
'cash_accounts' => 'Käteistilit',
|
||||||
'Cash account' => 'Käteistili',
|
'Cash account' => 'Käteistili',
|
||||||
'liabilities_accounts' => 'Velat',
|
'liabilities_accounts' => 'Velat',
|
||||||
@ -1136,12 +1140,12 @@ return [
|
|||||||
'cash' => 'käteinen',
|
'cash' => 'käteinen',
|
||||||
'cant_find_redirect_account' => 'Firefly III yritti tehdä pyytämääsi uudelleenohjausta mutta epäonnistui. Pahoittelut siitä. Takaisin valikkoon.',
|
'cant_find_redirect_account' => 'Firefly III yritti tehdä pyytämääsi uudelleenohjausta mutta epäonnistui. Pahoittelut siitä. Takaisin valikkoon.',
|
||||||
'account_type' => 'Tilin tyyppi',
|
'account_type' => 'Tilin tyyppi',
|
||||||
'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:',
|
'save_transactions_by_moving' => 'Tallenna tämä tapahtuma siirtämällä se toiselle tilille:|Tallenna nämä tapahtumat siirtämällä ne toiselle tilille:',
|
||||||
'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.',
|
'save_transactions_by_moving_js' => 'Ei tapahtumia|Tallenna tämä tapahtuma siirtämällä se toiselle tilille. |Tallenna nämä tapahtumat siirtämällä ne toiselle tilille.',
|
||||||
'stored_new_account' => 'Uusi tili ":name" tallennettiin!',
|
'stored_new_account' => 'Uusi tili ":name" tallennettiin!',
|
||||||
'stored_new_account_js' => 'New account "<a href="accounts/show/{ID}">{name}</a>" stored!',
|
'stored_new_account_js' => 'Uusi tili "<a href="accounts/show/{ID}">{name}</a>" tallennettu!',
|
||||||
'updated_account' => 'Tiliä ":name" päivitettiin',
|
'updated_account' => 'Tiliä ":name" päivitettiin',
|
||||||
'updated_account_js' => 'Updated account "<a href="accounts/show/{ID}">{title}</a>".',
|
'updated_account_js' => 'Päivitetty tili "<a href="accounts/show/{ID}">{title}</a>".',
|
||||||
'credit_card_options' => 'Luottokorttivalinnat',
|
'credit_card_options' => 'Luottokorttivalinnat',
|
||||||
'no_transactions_account' => 'Tilillä ":name" ei ole yhtään tapahtumaa (tässä jaksossa).',
|
'no_transactions_account' => 'Tilillä ":name" ei ole yhtään tapahtumaa (tässä jaksossa).',
|
||||||
'no_transactions_period' => 'Ei tapahtumia (tässä jaksossa).',
|
'no_transactions_period' => 'Ei tapahtumia (tässä jaksossa).',
|
||||||
@ -1173,16 +1177,16 @@ return [
|
|||||||
'already_cleared_transactions' => 'Jo selvitetyt tapahtumat (:count)',
|
'already_cleared_transactions' => 'Jo selvitetyt tapahtumat (:count)',
|
||||||
'submitted_end_balance' => 'Annettu loppusaldo',
|
'submitted_end_balance' => 'Annettu loppusaldo',
|
||||||
'initial_balance_description' => 'Avaussaldo tilille ":account"',
|
'initial_balance_description' => 'Avaussaldo tilille ":account"',
|
||||||
'liability_credit_description' => 'Liability credit for ":account"',
|
'liability_credit_description' => 'Lainan luotto tilille ":account"',
|
||||||
'interest_calc_' => 'tuntematon',
|
'interest_calc_' => 'tuntematon',
|
||||||
'interest_calc_daily' => 'Päivässä',
|
'interest_calc_daily' => 'Päivässä',
|
||||||
'interest_calc_monthly' => 'Kuukaudessa',
|
'interest_calc_monthly' => 'Kuukaudessa',
|
||||||
'interest_calc_yearly' => 'Vuodessa',
|
'interest_calc_yearly' => 'Vuodessa',
|
||||||
'interest_calc_weekly' => 'Per week',
|
'interest_calc_weekly' => 'Viikossa',
|
||||||
'interest_calc_half-year' => 'Per half year',
|
'interest_calc_half-year' => 'Puolessa vuodessa',
|
||||||
'interest_calc_quarterly' => 'Per quarter',
|
'interest_calc_quarterly' => 'Neljännestä kohden',
|
||||||
'initial_balance_account' => 'Alkutasetili :account',
|
'initial_balance_account' => 'Alkutasetili :account',
|
||||||
'list_options' => 'List options',
|
'list_options' => 'Listan valinnat',
|
||||||
|
|
||||||
// categories:
|
// categories:
|
||||||
'new_category' => 'Uusi kategoria',
|
'new_category' => 'Uusi kategoria',
|
||||||
@ -1289,10 +1293,10 @@ return [
|
|||||||
'unknown_journal_error' => 'Tapahtuman tallennus epäonnistui. Syy tallentui lokitiedostoon.',
|
'unknown_journal_error' => 'Tapahtuman tallennus epäonnistui. Syy tallentui lokitiedostoon.',
|
||||||
'attachment_not_found' => 'Tätä liitettä ei löydy.',
|
'attachment_not_found' => 'Tätä liitettä ei löydy.',
|
||||||
'journal_link_bill' => 'Tämä tapahtuma liittyy laskuun <a href=":route">:name</a>. Jos haluat poistaa yhteyden, poista valinta liitos-valintaruudusta. Käytä sääntöjä yhdistääksesi tapahtuma toiseen laskuun.',
|
'journal_link_bill' => 'Tämä tapahtuma liittyy laskuun <a href=":route">:name</a>. Jos haluat poistaa yhteyden, poista valinta liitos-valintaruudusta. Käytä sääntöjä yhdistääksesi tapahtuma toiseen laskuun.',
|
||||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
'transaction_stored_link' => '<a href="transactions/show/{ID}">Tapahtuma #{ID} ("{title}")</a> on tallennettu.',
|
||||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Tapahtuma #{ID}</a> on tallennettu.',
|
||||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> ("{title}") has been updated.',
|
'transaction_updated_link' => '<a href="transactions/show/{ID}">Tapahtuma #{ID}</a> ("{title}") on päivitetty.',
|
||||||
'transaction_updated_no_changes' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> ("{title}") did not receive any changes.',
|
'transaction_updated_no_changes' => '<a href="transactions/show/{ID}">Tapahtuma #{ID}</a> ("{title}") ei muuttunut.',
|
||||||
'first_split_decides' => 'Ensimmäinen jako määrittää tämän kentän arvon',
|
'first_split_decides' => 'Ensimmäinen jako määrittää tämän kentän arvon',
|
||||||
'first_split_overrules_source' => 'Ensimmäinen jako voi kumota lähdetilin',
|
'first_split_overrules_source' => 'Ensimmäinen jako voi kumota lähdetilin',
|
||||||
'first_split_overrules_destination' => 'Ensimmäinen jako voi kumota kohdetilin',
|
'first_split_overrules_destination' => 'Ensimmäinen jako voi kumota kohdetilin',
|
||||||
@ -1336,8 +1340,8 @@ return [
|
|||||||
'left_to_spend_per_day' => 'Käytettävissä per päivä',
|
'left_to_spend_per_day' => 'Käytettävissä per päivä',
|
||||||
'bills_paid' => 'Maksetut laskut',
|
'bills_paid' => 'Maksetut laskut',
|
||||||
'custom_period' => 'Mukautettu jakso',
|
'custom_period' => 'Mukautettu jakso',
|
||||||
'reset_to_current' => 'Reset to current period',
|
'reset_to_current' => 'Palauta nykyiselle kaudelle',
|
||||||
'select_period' => 'Select a period',
|
'select_period' => 'Valitse kausi',
|
||||||
|
|
||||||
// menu and titles, should be recycled as often as possible:
|
// menu and titles, should be recycled as often as possible:
|
||||||
'currency' => 'Valuutta',
|
'currency' => 'Valuutta',
|
||||||
@ -1368,11 +1372,11 @@ return [
|
|||||||
'credit_card_type_monthlyFull' => 'Täysi maksu joka kuukausi',
|
'credit_card_type_monthlyFull' => 'Täysi maksu joka kuukausi',
|
||||||
'liability_direction_credit' => 'Minulle ollaan velkaa tämä',
|
'liability_direction_credit' => 'Minulle ollaan velkaa tämä',
|
||||||
'liability_direction_debit' => 'Olen tämän velkaa jollekin muulle',
|
'liability_direction_debit' => 'Olen tämän velkaa jollekin muulle',
|
||||||
'liability_direction_credit_short' => 'Owed this debt',
|
'liability_direction_credit_short' => 'Minulle ollaan velkaa',
|
||||||
'liability_direction_debit_short' => 'Owe this debt',
|
'liability_direction_debit_short' => 'Olen velkaa',
|
||||||
'liability_direction__short' => 'Tuntematon',
|
'liability_direction__short' => 'Tuntematon',
|
||||||
'liability_direction_null_short' => 'Tuntematon',
|
'liability_direction_null_short' => 'Tuntematon',
|
||||||
'Liability credit' => 'Liability credit',
|
'Liability credit' => 'Lainan luotto',
|
||||||
'budgets' => 'Budjetit',
|
'budgets' => 'Budjetit',
|
||||||
'tags' => 'Tägit',
|
'tags' => 'Tägit',
|
||||||
'reports' => 'Raportit',
|
'reports' => 'Raportit',
|
||||||
@ -1443,7 +1447,7 @@ return [
|
|||||||
'splitByAccount' => 'Tileittäin',
|
'splitByAccount' => 'Tileittäin',
|
||||||
'coveredWithTags' => 'Tägitetty',
|
'coveredWithTags' => 'Tägitetty',
|
||||||
'leftInBudget' => 'Budjetissa jäljellä',
|
'leftInBudget' => 'Budjetissa jäljellä',
|
||||||
'left_in_debt' => 'Amount due',
|
'left_in_debt' => 'Maksettavaa',
|
||||||
'sumOfSums' => 'Summat yhteensä',
|
'sumOfSums' => 'Summat yhteensä',
|
||||||
'noCategory' => '(ei kategoriaa)',
|
'noCategory' => '(ei kategoriaa)',
|
||||||
'notCharged' => 'Ei veloitettu (vielä)',
|
'notCharged' => 'Ei veloitettu (vielä)',
|
||||||
@ -1528,7 +1532,7 @@ return [
|
|||||||
'month' => 'Kuukausi',
|
'month' => 'Kuukausi',
|
||||||
'budget' => 'Budjetti',
|
'budget' => 'Budjetti',
|
||||||
'spent' => 'Käytetty',
|
'spent' => 'Käytetty',
|
||||||
'spent_capped' => 'Spent (capped)',
|
'spent_capped' => 'Käytetty (rajattu)',
|
||||||
'spent_in_budget' => 'Budjetista käytetty',
|
'spent_in_budget' => 'Budjetista käytetty',
|
||||||
'left_to_spend' => 'Käytettävissä',
|
'left_to_spend' => 'Käytettävissä',
|
||||||
'earned' => 'Ansaittu',
|
'earned' => 'Ansaittu',
|
||||||
@ -1604,7 +1608,7 @@ return [
|
|||||||
'transaction_journal_information' => 'Tapahtumatiedot',
|
'transaction_journal_information' => 'Tapahtumatiedot',
|
||||||
'transaction_journal_meta' => 'Metatiedot',
|
'transaction_journal_meta' => 'Metatiedot',
|
||||||
'transaction_journal_more' => 'Lisätietoja',
|
'transaction_journal_more' => 'Lisätietoja',
|
||||||
'basic_journal_information' => 'Basic transaction information',
|
'basic_journal_information' => 'Tapahtuman perustiedot',
|
||||||
'transaction_journal_extra' => 'Lisätiedot',
|
'transaction_journal_extra' => 'Lisätiedot',
|
||||||
'att_part_of_journal' => 'Tallennettu tietueeseen ":journal"',
|
'att_part_of_journal' => 'Tallennettu tietueeseen ":journal"',
|
||||||
'total_amount' => 'Kokonaissumma',
|
'total_amount' => 'Kokonaissumma',
|
||||||
@ -1622,12 +1626,12 @@ return [
|
|||||||
'store_configuration' => 'Tallenna asetukset',
|
'store_configuration' => 'Tallenna asetukset',
|
||||||
'single_user_administration' => 'Käyttäjän :email ylläpito',
|
'single_user_administration' => 'Käyttäjän :email ylläpito',
|
||||||
'edit_user' => 'Muokkaa käyttäjää :email',
|
'edit_user' => 'Muokkaa käyttäjää :email',
|
||||||
'hidden_fields_preferences' => 'You can enable more transaction options in your <a href="preferences">preferences</a>.',
|
'hidden_fields_preferences' => 'Voit ottaa käyttöön lisää tapahtumavalintoja <a href="preferences">asetuksissa</a>.',
|
||||||
'user_data_information' => 'Käyttäjätiedot',
|
'user_data_information' => 'Käyttäjätiedot',
|
||||||
'user_information' => 'Käyttäjätiedot',
|
'user_information' => 'Käyttäjätiedot',
|
||||||
'total_size' => 'koko yhteensä',
|
'total_size' => 'koko yhteensä',
|
||||||
'budget_or_budgets' => ':count budjetti|:count budjettia',
|
'budget_or_budgets' => ':count budjetti|:count budjettia',
|
||||||
'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount',
|
'budgets_with_limits' => ':count budjetti määritetyllä summalla|:count budjettia määritetyllä summalla',
|
||||||
'nr_of_rules_in_total_groups' => ':count_rules sääntöä :count_groups sääntöryhmässä',
|
'nr_of_rules_in_total_groups' => ':count_rules sääntöä :count_groups sääntöryhmässä',
|
||||||
'tag_or_tags' => ':count tagi|:count tagia',
|
'tag_or_tags' => ':count tagi|:count tagia',
|
||||||
'configuration_updated' => 'Asetukset on päivitetty',
|
'configuration_updated' => 'Asetukset on päivitetty',
|
||||||
@ -1733,9 +1737,9 @@ return [
|
|||||||
'after_update_create_another' => 'Päivityksen jälkeen, palaa takaisin jatkamaan muokkausta.',
|
'after_update_create_another' => 'Päivityksen jälkeen, palaa takaisin jatkamaan muokkausta.',
|
||||||
'store_as_new' => 'Tallenna uutena tapahtumana päivityksen sijaan.',
|
'store_as_new' => 'Tallenna uutena tapahtumana päivityksen sijaan.',
|
||||||
'reset_after' => 'Tyhjennä lomake lähetyksen jälkeen',
|
'reset_after' => 'Tyhjennä lomake lähetyksen jälkeen',
|
||||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
'errors_submission' => 'Lomakkeen tiedoissa oli jotain vikaa. Ole hyvä ja tarkista virheet.',
|
||||||
'transaction_expand_split' => 'Laajenna jako',
|
'transaction_expand_split' => 'Laajenna jako',
|
||||||
'transaction_collapse_split' => 'Collapse split',
|
'transaction_collapse_split' => 'Yhdistä jako',
|
||||||
|
|
||||||
// object groups
|
// object groups
|
||||||
'default_group_title_name' => '(ryhmittelemättömät)',
|
'default_group_title_name' => '(ryhmittelemättömät)',
|
||||||
@ -1873,8 +1877,8 @@ return [
|
|||||||
'box_spend_per_day' => 'Käytettävissä per päivä: :amount',
|
'box_spend_per_day' => 'Käytettävissä per päivä: :amount',
|
||||||
|
|
||||||
// debug page
|
// debug page
|
||||||
'debug_page' => 'Debug page',
|
'debug_page' => 'Virheenkorjaussivu',
|
||||||
'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub issue</a>. It will generate a beautiful table that can be used to quickly diagnose your problem.',
|
'debug_submit_instructions' => 'Jos sinulla on ongelmia, voit käyttää tässä ruudussa olevia tietoja virheenjäljitystietoina. Kopioi ja liitä uuteen tai olemassa olevaan <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub ongelmaan</a>. Se luo kauniin taulukon, jolla voidaan nopeasti diagnosoida ongelmia.',
|
||||||
'debug_pretty_table' => 'Jos kopioit/liität alla olevan ruudun GitHub-tikettiin, se luo taulukon. Älä lisää tähän tekstiin lainausmerkkejä.',
|
'debug_pretty_table' => 'Jos kopioit/liität alla olevan ruudun GitHub-tikettiin, se luo taulukon. Älä lisää tähän tekstiin lainausmerkkejä.',
|
||||||
'debug_additional_data' => 'Voit myös jakaa alla olevan laatikon sisällön. Voit myös kopioida ja liittää tämän uuteen tai olemassa olevaan <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub tikettiin</a>. Tämän kentän sisältö voi kuitenkin sisältää yksityisiä tietoja, kuten tilien nimiä, tapahtumatietoja tai sähköpostiosoitteita.',
|
'debug_additional_data' => 'Voit myös jakaa alla olevan laatikon sisällön. Voit myös kopioida ja liittää tämän uuteen tai olemassa olevaan <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub tikettiin</a>. Tämän kentän sisältö voi kuitenkin sisältää yksityisiä tietoja, kuten tilien nimiä, tapahtumatietoja tai sähköpostiosoitteita.',
|
||||||
|
|
||||||
@ -1884,7 +1888,7 @@ return [
|
|||||||
'object_groups_breadcrumb' => 'Ryhmät',
|
'object_groups_breadcrumb' => 'Ryhmät',
|
||||||
'object_groups_index' => 'Yleiskatsaus',
|
'object_groups_index' => 'Yleiskatsaus',
|
||||||
'object_groups' => 'Ryhmät',
|
'object_groups' => 'Ryhmät',
|
||||||
'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.',
|
'object_groups_empty_explain' => 'Joitakin asioita Firefly III:ssa voidaan jakaa ryhmiin. Esimerkiksi Säästöpossuilla on kenttä nimeltä "Ryhmä" muokkaa ja luo sivuilla. Kun asetat tälle kentälle arvon, voit muokata ryhmien nimiä ja järjestystä tällä sivulla. Lisätietoja saat tutustumalla ohjeisiin oikean yläkulman (?)-kuvakkeen alla.',
|
||||||
'object_group_title' => 'Otsikko',
|
'object_group_title' => 'Otsikko',
|
||||||
'edit_object_group' => 'Muokkaa ryhmää ":title"',
|
'edit_object_group' => 'Muokkaa ryhmää ":title"',
|
||||||
'delete_object_group' => 'Poista ryhmä ":title"',
|
'delete_object_group' => 'Poista ryhmä ":title"',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Tilin tyyppi',
|
'account_type' => 'Tilin tyyppi',
|
||||||
'created_at' => 'Luotu',
|
'created_at' => 'Luotu',
|
||||||
'account' => 'Tili',
|
'account' => 'Tili',
|
||||||
'external_uri' => 'Ulkoinen URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Summa',
|
'matchingAmount' => 'Summa',
|
||||||
'destination' => 'Kohde',
|
'destination' => 'Kohde',
|
||||||
'source' => 'Lähde',
|
'source' => 'Lähde',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Et voi käyttää tätä tiliä lähdetilinä.',
|
'generic_invalid_source' => 'Et voi käyttää tätä tiliä lähdetilinä.',
|
||||||
'generic_invalid_destination' => 'Et voi käyttää tätä tiliä kohdetilinä.',
|
'generic_invalid_destination' => 'Et voi käyttää tätä tiliä kohdetilinä.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'Määritteen :attribute arvon täytyy olla vähintään :value.',
|
'gte.numeric' => 'Määritteen :attribute arvon täytyy olla vähintään :value.',
|
||||||
'gt.numeric' => ':attribute tulee olla suurempi kuin :value.',
|
'gt.numeric' => ':attribute tulee olla suurempi kuin :value.',
|
||||||
'gte.file' => 'Määritteen :attribute koon täytyy olla vähintään :value kilotavua.',
|
'gte.file' => 'Määritteen :attribute koon täytyy olla vähintään :value kilotavua.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Accueil',
|
'home' => 'Accueil',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Modifier la devise ":name"',
|
'edit_currency' => 'Modifier la devise ":name"',
|
||||||
'delete_currency' => 'Supprimer la devise ":name"',
|
'delete_currency' => 'Supprimer la devise ":name"',
|
||||||
'newPiggyBank' => 'Créer une nouvelle tirelire',
|
'newPiggyBank' => 'Créer une nouvelle tirelire',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Supprimer le lien entre les opérations',
|
'delete_journal_link' => 'Supprimer le lien entre les opérations',
|
||||||
'edit_object_group' => 'Modifier le groupe ":title"',
|
'edit_object_group' => 'Modifier le groupe ":title"',
|
||||||
'delete_object_group' => 'Supprimer le groupe ":title"',
|
'delete_object_group' => 'Supprimer le groupe ":title"',
|
||||||
'logout_others' => 'Déconnecter d\'autres sessions',
|
'logout_others' => 'Déconnecter d\'autres sessions'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'L\'opération a été créée le ":value"',
|
'search_modifier_created_on' => 'L\'opération a été créée le ":value"',
|
||||||
'search_modifier_updated_on' => 'L\'opération a été mise à jour pour la dernière fois le ":value"',
|
'search_modifier_updated_on' => 'L\'opération a été mise à jour pour la dernière fois le ":value"',
|
||||||
'search_modifier_external_id' => 'L\'ID externe est ":value"',
|
'search_modifier_external_id' => 'L\'ID externe est ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'La référence interne est ":value"',
|
'search_modifier_internal_reference' => 'La référence interne est ":value"',
|
||||||
'search_modifier_description_starts' => 'La description est ":value"',
|
'search_modifier_description_starts' => 'La description est ":value"',
|
||||||
'search_modifier_description_ends' => 'La description se termine par ":value"',
|
'search_modifier_description_ends' => 'La description se termine par ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'La référence interne est ":trigger_value"',
|
'rule_trigger_internal_reference' => 'La référence interne est ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'L\'ID du journal d\'opérations est..',
|
'rule_trigger_journal_id_choice' => 'L\'ID du journal d\'opérations est..',
|
||||||
'rule_trigger_journal_id' => 'L\'ID du journal d\'opérations est ":trigger_value"',
|
'rule_trigger_journal_id' => 'L\'ID du journal d\'opérations est ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'SUPPRIMER l\'opération (!)',
|
'rule_action_delete_transaction_choice' => 'SUPPRIMER l\'opération (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Référence interne',
|
'pref_optional_tj_internal_reference' => 'Référence interne',
|
||||||
'pref_optional_tj_notes' => 'Notes',
|
'pref_optional_tj_notes' => 'Notes',
|
||||||
'pref_optional_tj_attachments' => 'Pièces jointes',
|
'pref_optional_tj_attachments' => 'Pièces jointes',
|
||||||
'pref_optional_tj_external_uri' => 'URL externe',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Emplacement',
|
'pref_optional_tj_location' => 'Emplacement',
|
||||||
'pref_optional_tj_links' => 'Liens d\'opération',
|
'pref_optional_tj_links' => 'Liens d\'opération',
|
||||||
'optional_field_meta_dates' => 'Dates',
|
'optional_field_meta_dates' => 'Dates',
|
||||||
'optional_field_meta_business' => 'Commerce',
|
'optional_field_meta_business' => 'Commerce',
|
||||||
'optional_field_attachments' => 'Pièces jointes',
|
'optional_field_attachments' => 'Pièces jointes',
|
||||||
'optional_field_meta_data' => 'Métadonnées facultatives',
|
'optional_field_meta_data' => 'Métadonnées facultatives',
|
||||||
'external_uri' => 'URL externe',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Suppression de données',
|
'delete_stuff_header' => 'Suppression de données',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Type de compte',
|
'account_type' => 'Type de compte',
|
||||||
'created_at' => 'Créé le',
|
'created_at' => 'Créé le',
|
||||||
'account' => 'Compte',
|
'account' => 'Compte',
|
||||||
'external_uri' => 'URI externe',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Montant',
|
'matchingAmount' => 'Montant',
|
||||||
'destination' => 'Destination',
|
'destination' => 'Destination',
|
||||||
'source' => 'Source',
|
'source' => 'Source',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Vous ne pouvez pas utiliser ce compte comme compte source.',
|
'generic_invalid_source' => 'Vous ne pouvez pas utiliser ce compte comme compte source.',
|
||||||
'generic_invalid_destination' => 'Vous ne pouvez pas utiliser ce compte comme compte de destination.',
|
'generic_invalid_destination' => 'Vous ne pouvez pas utiliser ce compte comme compte de destination.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.',
|
'gte.numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.',
|
||||||
'gt.numeric' => 'Le champ :attribute doit être plus grand que :value.',
|
'gt.numeric' => 'Le champ :attribute doit être plus grand que :value.',
|
||||||
'gte.file' => 'L\'attribut :attribute doit contenir au moins :value kilo-octets.',
|
'gte.file' => 'L\'attribut :attribute doit contenir au moins :value kilo-octets.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Főoldal',
|
'home' => 'Főoldal',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => '":name" pénznem szerkesztése',
|
'edit_currency' => '":name" pénznem szerkesztése',
|
||||||
'delete_currency' => '":name" pénznem törlése',
|
'delete_currency' => '":name" pénznem törlése',
|
||||||
'newPiggyBank' => 'Új malacpersely létrehozása',
|
'newPiggyBank' => 'Új malacpersely létrehozása',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Tranzakciók közötti kapcsolat törlése',
|
'delete_journal_link' => 'Tranzakciók közötti kapcsolat törlése',
|
||||||
'edit_object_group' => '":title" csoport szerkesztése',
|
'edit_object_group' => '":title" csoport szerkesztése',
|
||||||
'delete_object_group' => '":title" csoport törlése',
|
'delete_object_group' => '":title" csoport törlése',
|
||||||
'logout_others' => 'Minden más munkamenet kijelentkeztetése',
|
'logout_others' => 'Minden más munkamenet kijelentkeztetése'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Tranzakció létrehozva: :value',
|
'search_modifier_created_on' => 'Tranzakció létrehozva: :value',
|
||||||
'search_modifier_updated_on' => 'Tranzakció utoljára módosítva: :value',
|
'search_modifier_updated_on' => 'Tranzakció utoljára módosítva: :value',
|
||||||
'search_modifier_external_id' => 'Külső ID pontosan ":value"',
|
'search_modifier_external_id' => 'Külső ID pontosan ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Belső hivatkozás: :value',
|
'search_modifier_internal_reference' => 'Belső hivatkozás: :value',
|
||||||
'search_modifier_description_starts' => 'Leírás: ":value"',
|
'search_modifier_description_starts' => 'Leírás: ":value"',
|
||||||
'search_modifier_description_ends' => 'Leírás vége: ":value"',
|
'search_modifier_description_ends' => 'Leírás vége: ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
||||||
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'Tranzakció TÖRLÉSE (!)',
|
'rule_action_delete_transaction_choice' => 'Tranzakció TÖRLÉSE (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Belső hivatkozás',
|
'pref_optional_tj_internal_reference' => 'Belső hivatkozás',
|
||||||
'pref_optional_tj_notes' => 'Megjegyzések',
|
'pref_optional_tj_notes' => 'Megjegyzések',
|
||||||
'pref_optional_tj_attachments' => 'Mellékletek',
|
'pref_optional_tj_attachments' => 'Mellékletek',
|
||||||
'pref_optional_tj_external_uri' => 'External URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Location',
|
'pref_optional_tj_location' => 'Location',
|
||||||
'pref_optional_tj_links' => 'Transaction links',
|
'pref_optional_tj_links' => 'Transaction links',
|
||||||
'optional_field_meta_dates' => 'Dátumok',
|
'optional_field_meta_dates' => 'Dátumok',
|
||||||
'optional_field_meta_business' => 'Üzleti',
|
'optional_field_meta_business' => 'Üzleti',
|
||||||
'optional_field_attachments' => 'Mellékletek',
|
'optional_field_attachments' => 'Mellékletek',
|
||||||
'optional_field_meta_data' => 'Opcionális metaadat',
|
'optional_field_meta_data' => 'Opcionális metaadat',
|
||||||
'external_uri' => 'External URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Adatok törlése',
|
'delete_stuff_header' => 'Adatok törlése',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Bankszámla típusa',
|
'account_type' => 'Bankszámla típusa',
|
||||||
'created_at' => 'Létrehozva',
|
'created_at' => 'Létrehozva',
|
||||||
'account' => 'Bankszámla',
|
'account' => 'Bankszámla',
|
||||||
'external_uri' => 'Külső hivatkozás',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Összeg',
|
'matchingAmount' => 'Összeg',
|
||||||
'destination' => 'Cél',
|
'destination' => 'Cél',
|
||||||
'source' => 'Forrás',
|
'source' => 'Forrás',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Nem használhatod ezt a fiókot forrásfiókként.',
|
'generic_invalid_source' => 'Nem használhatod ezt a fiókot forrásfiókként.',
|
||||||
'generic_invalid_destination' => 'Nem használhatod ezt a fiókot célfiókként.',
|
'generic_invalid_destination' => 'Nem használhatod ezt a fiókot célfiókként.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute attribútumnak :value értéknél nagyobbnak vagy vele egyenlőnek kell lennie.',
|
'gte.numeric' => ':attribute attribútumnak :value értéknél nagyobbnak vagy vele egyenlőnek kell lennie.',
|
||||||
'gt.numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value.',
|
'gt.numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value.',
|
||||||
'gte.file' => ':attribute attribútumnak :value kilobájtnál nagyobb vagy egyenlőnek kell lennie.',
|
'gte.file' => ':attribute attribútumnak :value kilobájtnál nagyobb vagy egyenlőnek kell lennie.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Beranda',
|
'home' => 'Beranda',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Edit mata uang ":name"',
|
'edit_currency' => 'Edit mata uang ":name"',
|
||||||
'delete_currency' => 'Hapus mata uang ":name"',
|
'delete_currency' => 'Hapus mata uang ":name"',
|
||||||
'newPiggyBank' => 'Buat celengan baru',
|
'newPiggyBank' => 'Buat celengan baru',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Hapus tautan antar transaksi',
|
'delete_journal_link' => 'Hapus tautan antar transaksi',
|
||||||
'edit_object_group' => 'Ubah grup ":title"',
|
'edit_object_group' => 'Ubah grup ":title"',
|
||||||
'delete_object_group' => 'Hapus grup ":title"',
|
'delete_object_group' => 'Hapus grup ":title"',
|
||||||
'logout_others' => 'Keluar dari semua sesi',
|
'logout_others' => 'Keluar dari semua sesi'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Transaction was created on ":value"',
|
'search_modifier_created_on' => 'Transaction was created on ":value"',
|
||||||
'search_modifier_updated_on' => 'Transaction was last updated on ":value"',
|
'search_modifier_updated_on' => 'Transaction was last updated on ":value"',
|
||||||
'search_modifier_external_id' => 'External ID is ":value"',
|
'search_modifier_external_id' => 'External ID is ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
||||||
'search_modifier_description_starts' => 'Description is ":value"',
|
'search_modifier_description_starts' => 'Description is ":value"',
|
||||||
'search_modifier_description_ends' => 'Description ends with ":value"',
|
'search_modifier_description_ends' => 'Description ends with ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
||||||
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Referensi internal',
|
'pref_optional_tj_internal_reference' => 'Referensi internal',
|
||||||
'pref_optional_tj_notes' => 'Catatan',
|
'pref_optional_tj_notes' => 'Catatan',
|
||||||
'pref_optional_tj_attachments' => 'Lampiran',
|
'pref_optional_tj_attachments' => 'Lampiran',
|
||||||
'pref_optional_tj_external_uri' => 'External URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Location',
|
'pref_optional_tj_location' => 'Location',
|
||||||
'pref_optional_tj_links' => 'Transaction links',
|
'pref_optional_tj_links' => 'Transaction links',
|
||||||
'optional_field_meta_dates' => 'Tanggal',
|
'optional_field_meta_dates' => 'Tanggal',
|
||||||
'optional_field_meta_business' => 'Bisnis',
|
'optional_field_meta_business' => 'Bisnis',
|
||||||
'optional_field_attachments' => 'Lampiran',
|
'optional_field_attachments' => 'Lampiran',
|
||||||
'optional_field_meta_data' => 'Data meta opsional',
|
'optional_field_meta_data' => 'Data meta opsional',
|
||||||
'external_uri' => 'External URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Delete data',
|
'delete_stuff_header' => 'Delete data',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Jenis akun',
|
'account_type' => 'Jenis akun',
|
||||||
'created_at' => 'Dibuat di',
|
'created_at' => 'Dibuat di',
|
||||||
'account' => 'Akun',
|
'account' => 'Akun',
|
||||||
'external_uri' => 'URI Eksternal',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Jumlah',
|
'matchingAmount' => 'Jumlah',
|
||||||
'destination' => 'Tujuan',
|
'destination' => 'Tujuan',
|
||||||
'source' => 'Sumber',
|
'source' => 'Sumber',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Anda tidak dapat menggunakan akun ini sebagai akun sumber.',
|
'generic_invalid_source' => 'Anda tidak dapat menggunakan akun ini sebagai akun sumber.',
|
||||||
'generic_invalid_destination' => 'Anda tidak dapat menggunakan akun ini sebagai akun tujuan.',
|
'generic_invalid_destination' => 'Anda tidak dapat menggunakan akun ini sebagai akun tujuan.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute harus lebih besar dari atau sama dengan :value.',
|
'gte.numeric' => ':attribute harus lebih besar dari atau sama dengan :value.',
|
||||||
'gt.numeric' => ':attribute harus lebih besar dari :value.',
|
'gt.numeric' => ':attribute harus lebih besar dari :value.',
|
||||||
'gte.file' => ':attribute harus lebih besar dari atau sama dengan :value kilobytes.',
|
'gte.file' => ':attribute harus lebih besar dari atau sama dengan :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Pagina principale',
|
'home' => 'Pagina principale',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Modifica valuta ":name"',
|
'edit_currency' => 'Modifica valuta ":name"',
|
||||||
'delete_currency' => 'Elimina valuta ":name"',
|
'delete_currency' => 'Elimina valuta ":name"',
|
||||||
'newPiggyBank' => 'Crea un nuovo salvadanaio',
|
'newPiggyBank' => 'Crea un nuovo salvadanaio',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Elimina il collegamento tra le transazioni',
|
'delete_journal_link' => 'Elimina il collegamento tra le transazioni',
|
||||||
'edit_object_group' => 'Modifica gruppo ":title"',
|
'edit_object_group' => 'Modifica gruppo ":title"',
|
||||||
'delete_object_group' => 'Elimina gruppo ":title"',
|
'delete_object_group' => 'Elimina gruppo ":title"',
|
||||||
'logout_others' => 'Esci dalle altre sessioni',
|
'logout_others' => 'Esci dalle altre sessioni'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'La transazione è stata creata il ":value"',
|
'search_modifier_created_on' => 'La transazione è stata creata il ":value"',
|
||||||
'search_modifier_updated_on' => 'La transazione è stata aggiornata l\'ultima volta il ":value"',
|
'search_modifier_updated_on' => 'La transazione è stata aggiornata l\'ultima volta il ":value"',
|
||||||
'search_modifier_external_id' => 'L\'ID esterno è ":value"',
|
'search_modifier_external_id' => 'L\'ID esterno è ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Il riferimento interno è ":value"',
|
'search_modifier_internal_reference' => 'Il riferimento interno è ":value"',
|
||||||
'search_modifier_description_starts' => 'La descrizione è ":value"',
|
'search_modifier_description_starts' => 'La descrizione è ":value"',
|
||||||
'search_modifier_description_ends' => 'La descrizione termina con ":value"',
|
'search_modifier_description_ends' => 'La descrizione termina con ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Il riferimento interno è ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Il riferimento interno è ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'L\'ID journal della transazione è...',
|
'rule_trigger_journal_id_choice' => 'L\'ID journal della transazione è...',
|
||||||
'rule_trigger_journal_id' => 'L\'ID journal della transazione è ":trigger_value"',
|
'rule_trigger_journal_id' => 'L\'ID journal della transazione è ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'ELIMINA transazione (!)',
|
'rule_action_delete_transaction_choice' => 'ELIMINA transazione (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Riferimento interno',
|
'pref_optional_tj_internal_reference' => 'Riferimento interno',
|
||||||
'pref_optional_tj_notes' => 'Note',
|
'pref_optional_tj_notes' => 'Note',
|
||||||
'pref_optional_tj_attachments' => 'Allegati',
|
'pref_optional_tj_attachments' => 'Allegati',
|
||||||
'pref_optional_tj_external_uri' => 'URL esterno',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Posizione',
|
'pref_optional_tj_location' => 'Posizione',
|
||||||
'pref_optional_tj_links' => 'Collegamenti della transazione',
|
'pref_optional_tj_links' => 'Collegamenti della transazione',
|
||||||
'optional_field_meta_dates' => 'Dati',
|
'optional_field_meta_dates' => 'Dati',
|
||||||
'optional_field_meta_business' => 'Attività commerciale',
|
'optional_field_meta_business' => 'Attività commerciale',
|
||||||
'optional_field_attachments' => 'Allegati',
|
'optional_field_attachments' => 'Allegati',
|
||||||
'optional_field_meta_data' => 'Metadati opzionali',
|
'optional_field_meta_data' => 'Metadati opzionali',
|
||||||
'external_uri' => 'URL esterno',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Elimina dati',
|
'delete_stuff_header' => 'Elimina dati',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Tipo conto',
|
'account_type' => 'Tipo conto',
|
||||||
'created_at' => 'Creato il',
|
'created_at' => 'Creato il',
|
||||||
'account' => 'Conto',
|
'account' => 'Conto',
|
||||||
'external_uri' => 'URI esterno',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Importo',
|
'matchingAmount' => 'Importo',
|
||||||
'destination' => 'Destinazione',
|
'destination' => 'Destinazione',
|
||||||
'source' => 'Origine',
|
'source' => 'Origine',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Non puoi utilizzare questo conto come conto di origine.',
|
'generic_invalid_source' => 'Non puoi utilizzare questo conto come conto di origine.',
|
||||||
'generic_invalid_destination' => 'Non puoi utilizzare questo conto come conto di destinazione.',
|
'generic_invalid_destination' => 'Non puoi utilizzare questo conto come conto di destinazione.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'Il campo :attribute deve essere maggiore o uguale a :value.',
|
'gte.numeric' => 'Il campo :attribute deve essere maggiore o uguale a :value.',
|
||||||
'gt.numeric' => 'Il campo :attribute deve essere maggiore di :value.',
|
'gt.numeric' => 'Il campo :attribute deve essere maggiore di :value.',
|
||||||
'gte.file' => 'Il campo :attribute deve essere maggiore o uguale a :value kilobyte.',
|
'gte.file' => 'Il campo :attribute deve essere maggiore o uguale a :value kilobyte.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'ホーム',
|
'home' => 'ホーム',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => '通貨 ":name" を編集する',
|
'edit_currency' => '通貨 ":name" を編集する',
|
||||||
'delete_currency' => '通貨 ":name" を削除する',
|
'delete_currency' => '通貨 ":name" を削除する',
|
||||||
'newPiggyBank' => '貯金箱の新規作成',
|
'newPiggyBank' => '貯金箱の新規作成',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => '取引間のリンクを削除する',
|
'delete_journal_link' => '取引間のリンクを削除する',
|
||||||
'edit_object_group' => 'グループ「:title」を編集',
|
'edit_object_group' => 'グループ「:title」を編集',
|
||||||
'delete_object_group' => 'グループ「:title」を削除',
|
'delete_object_group' => 'グループ「:title」を削除',
|
||||||
'logout_others' => '他のセッションからログアウトする',
|
'logout_others' => '他のセッションからログアウトする'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => '取引が「:value」に作成',
|
'search_modifier_created_on' => '取引が「:value」に作成',
|
||||||
'search_modifier_updated_on' => '取引の最終更新が「:value」',
|
'search_modifier_updated_on' => '取引の最終更新が「:value」',
|
||||||
'search_modifier_external_id' => '外部 ID が「:value」',
|
'search_modifier_external_id' => '外部 ID が「:value」',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => '内部参照が「:value」',
|
'search_modifier_internal_reference' => '内部参照が「:value」',
|
||||||
'search_modifier_description_starts' => '説明が「:value」',
|
'search_modifier_description_starts' => '説明が「:value」',
|
||||||
'search_modifier_description_ends' => '説明が「:value」で終わる',
|
'search_modifier_description_ends' => '説明が「:value」で終わる',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => '内部ID「:trigger_value」と一致する',
|
'rule_trigger_internal_reference' => '内部ID「:trigger_value」と一致する',
|
||||||
'rule_trigger_journal_id_choice' => '取引IDが次と一致する',
|
'rule_trigger_journal_id_choice' => '取引IDが次と一致する',
|
||||||
'rule_trigger_journal_id' => '取引IDが「:trigger_value」と一致する',
|
'rule_trigger_journal_id' => '取引IDが「:trigger_value」と一致する',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => '取引を削除 (!)',
|
'rule_action_delete_transaction_choice' => '取引を削除 (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => '内部参照',
|
'pref_optional_tj_internal_reference' => '内部参照',
|
||||||
'pref_optional_tj_notes' => '備考',
|
'pref_optional_tj_notes' => '備考',
|
||||||
'pref_optional_tj_attachments' => '添付ファイル',
|
'pref_optional_tj_attachments' => '添付ファイル',
|
||||||
'pref_optional_tj_external_uri' => '外部 URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => '場所',
|
'pref_optional_tj_location' => '場所',
|
||||||
'pref_optional_tj_links' => '取引リンク',
|
'pref_optional_tj_links' => '取引リンク',
|
||||||
'optional_field_meta_dates' => '日付',
|
'optional_field_meta_dates' => '日付',
|
||||||
'optional_field_meta_business' => 'ビジネス',
|
'optional_field_meta_business' => 'ビジネス',
|
||||||
'optional_field_attachments' => '添付ファイル',
|
'optional_field_attachments' => '添付ファイル',
|
||||||
'optional_field_meta_data' => '取引データ',
|
'optional_field_meta_data' => '取引データ',
|
||||||
'external_uri' => '外部 URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'データを削除',
|
'delete_stuff_header' => 'データを削除',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => '口座の種類',
|
'account_type' => '口座の種類',
|
||||||
'created_at' => '作成日時',
|
'created_at' => '作成日時',
|
||||||
'account' => '口座',
|
'account' => '口座',
|
||||||
'external_uri' => '外部URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => '金額',
|
'matchingAmount' => '金額',
|
||||||
'destination' => '資産勘定(支出先)',
|
'destination' => '資産勘定(支出先)',
|
||||||
'source' => '収入アカウント(収入源)',
|
'source' => '収入アカウント(収入源)',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'この口座を引き出し元口座として使用することはできません。',
|
'generic_invalid_source' => 'この口座を引き出し元口座として使用することはできません。',
|
||||||
'generic_invalid_destination' => 'この口座を預け入れ先口座として使用することはできません。',
|
'generic_invalid_destination' => 'この口座を預け入れ先口座として使用することはできません。',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute は :value 以上でなければなりません。',
|
'gte.numeric' => ':attribute は :value 以上でなければなりません。',
|
||||||
'gt.numeric' => ':attribute は :value より大きな値でなければいけません。',
|
'gt.numeric' => ':attribute は :value より大きな値でなければいけません。',
|
||||||
'gte.file' => ':attribute は :value キロバイト以上でなければなりません。',
|
'gte.file' => ':attribute は :value キロバイト以上でなければなりません。',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Hjem',
|
'home' => 'Hjem',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Rediger valuta ":name"',
|
'edit_currency' => 'Rediger valuta ":name"',
|
||||||
'delete_currency' => 'Slett valuta ":name"',
|
'delete_currency' => 'Slett valuta ":name"',
|
||||||
'newPiggyBank' => 'Lag en ny sparegris',
|
'newPiggyBank' => 'Lag en ny sparegris',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Slett kobling mellom transaksjoner',
|
'delete_journal_link' => 'Slett kobling mellom transaksjoner',
|
||||||
'edit_object_group' => 'Edit group ":title"',
|
'edit_object_group' => 'Edit group ":title"',
|
||||||
'delete_object_group' => 'Delete group ":title"',
|
'delete_object_group' => 'Delete group ":title"',
|
||||||
'logout_others' => 'Logout other sessions',
|
'logout_others' => 'Logout other sessions'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Transaction was created on ":value"',
|
'search_modifier_created_on' => 'Transaction was created on ":value"',
|
||||||
'search_modifier_updated_on' => 'Transaction was last updated on ":value"',
|
'search_modifier_updated_on' => 'Transaction was last updated on ":value"',
|
||||||
'search_modifier_external_id' => 'External ID is ":value"',
|
'search_modifier_external_id' => 'External ID is ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
'search_modifier_internal_reference' => 'Internal reference is ":value"',
|
||||||
'search_modifier_description_starts' => 'Description is ":value"',
|
'search_modifier_description_starts' => 'Description is ":value"',
|
||||||
'search_modifier_description_ends' => 'Description ends with ":value"',
|
'search_modifier_description_ends' => 'Description ends with ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Internal reference is ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
'rule_trigger_journal_id_choice' => 'Transaction journal ID is..',
|
||||||
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Intern referanse',
|
'pref_optional_tj_internal_reference' => 'Intern referanse',
|
||||||
'pref_optional_tj_notes' => 'Notater',
|
'pref_optional_tj_notes' => 'Notater',
|
||||||
'pref_optional_tj_attachments' => 'Vedlegg',
|
'pref_optional_tj_attachments' => 'Vedlegg',
|
||||||
'pref_optional_tj_external_uri' => 'External URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Location',
|
'pref_optional_tj_location' => 'Location',
|
||||||
'pref_optional_tj_links' => 'Transaction links',
|
'pref_optional_tj_links' => 'Transaction links',
|
||||||
'optional_field_meta_dates' => 'Datoer',
|
'optional_field_meta_dates' => 'Datoer',
|
||||||
'optional_field_meta_business' => 'Bedrift',
|
'optional_field_meta_business' => 'Bedrift',
|
||||||
'optional_field_attachments' => 'Vedlegg',
|
'optional_field_attachments' => 'Vedlegg',
|
||||||
'optional_field_meta_data' => 'Valgfri metadata',
|
'optional_field_meta_data' => 'Valgfri metadata',
|
||||||
'external_uri' => 'External URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Delete data',
|
'delete_stuff_header' => 'Delete data',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Kontotype',
|
'account_type' => 'Kontotype',
|
||||||
'created_at' => 'Opprettet',
|
'created_at' => 'Opprettet',
|
||||||
'account' => 'Konto',
|
'account' => 'Konto',
|
||||||
'external_uri' => 'External URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Beløp',
|
'matchingAmount' => 'Beløp',
|
||||||
'destination' => 'Mål',
|
'destination' => 'Mål',
|
||||||
'source' => 'Kilde',
|
'source' => 'Kilde',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
'generic_invalid_source' => 'You can\'t use this account as the source account.',
|
||||||
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
'generic_invalid_destination' => 'You can\'t use this account as the destination account.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
'gte.numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||||
'gt.numeric' => 'The :attribute must be greater than :value.',
|
'gt.numeric' => 'The :attribute must be greater than :value.',
|
||||||
'gte.file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
'gte.file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Home',
|
'home' => 'Home',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Wijzig valuta ":name"',
|
'edit_currency' => 'Wijzig valuta ":name"',
|
||||||
'delete_currency' => 'Verwijder valuta ":name"',
|
'delete_currency' => 'Verwijder valuta ":name"',
|
||||||
'newPiggyBank' => 'Nieuw spaarpotje',
|
'newPiggyBank' => 'Nieuw spaarpotje',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Verwijder koppeling tussen transacties',
|
'delete_journal_link' => 'Verwijder koppeling tussen transacties',
|
||||||
'edit_object_group' => 'Wijzig groep ":title"',
|
'edit_object_group' => 'Wijzig groep ":title"',
|
||||||
'delete_object_group' => 'Verwijder groep ":title"',
|
'delete_object_group' => 'Verwijder groep ":title"',
|
||||||
'logout_others' => 'Andere sessies afmelden',
|
'logout_others' => 'Andere sessies afmelden'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Transactie werd gemaakt op ":value"',
|
'search_modifier_created_on' => 'Transactie werd gemaakt op ":value"',
|
||||||
'search_modifier_updated_on' => 'Transactie werd laatst gewijzigd op ":value"',
|
'search_modifier_updated_on' => 'Transactie werd laatst gewijzigd op ":value"',
|
||||||
'search_modifier_external_id' => 'Extern ID is ":value"',
|
'search_modifier_external_id' => 'Extern ID is ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Interne referentie is ":value"',
|
'search_modifier_internal_reference' => 'Interne referentie is ":value"',
|
||||||
'search_modifier_description_starts' => 'Omschrijving is ":value"',
|
'search_modifier_description_starts' => 'Omschrijving is ":value"',
|
||||||
'search_modifier_description_ends' => 'Omschrijving eindigt op ":value"',
|
'search_modifier_description_ends' => 'Omschrijving eindigt op ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Interne verwijzing is ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Interne verwijzing is ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'Transactiejournaal ID is..',
|
'rule_trigger_journal_id_choice' => 'Transactiejournaal ID is..',
|
||||||
'rule_trigger_journal_id' => 'Transactiejournaal ID is ":trigger_value"',
|
'rule_trigger_journal_id' => 'Transactiejournaal ID is ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'VERWIJDER transactie (!)',
|
'rule_action_delete_transaction_choice' => 'VERWIJDER transactie (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Interne verwijzing',
|
'pref_optional_tj_internal_reference' => 'Interne verwijzing',
|
||||||
'pref_optional_tj_notes' => 'Notities',
|
'pref_optional_tj_notes' => 'Notities',
|
||||||
'pref_optional_tj_attachments' => 'Bijlagen',
|
'pref_optional_tj_attachments' => 'Bijlagen',
|
||||||
'pref_optional_tj_external_uri' => 'Externe URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Locatie',
|
'pref_optional_tj_location' => 'Locatie',
|
||||||
'pref_optional_tj_links' => 'Transactiekoppelingen',
|
'pref_optional_tj_links' => 'Transactiekoppelingen',
|
||||||
'optional_field_meta_dates' => 'Data',
|
'optional_field_meta_dates' => 'Data',
|
||||||
'optional_field_meta_business' => 'Zakelijk',
|
'optional_field_meta_business' => 'Zakelijk',
|
||||||
'optional_field_attachments' => 'Bijlagen',
|
'optional_field_attachments' => 'Bijlagen',
|
||||||
'optional_field_meta_data' => 'Optionele meta-gegevens',
|
'optional_field_meta_data' => 'Optionele meta-gegevens',
|
||||||
'external_uri' => 'Externe URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Verwijder gegevens',
|
'delete_stuff_header' => 'Verwijder gegevens',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Accounttype',
|
'account_type' => 'Accounttype',
|
||||||
'created_at' => 'Gemaakt op',
|
'created_at' => 'Gemaakt op',
|
||||||
'account' => 'Rekening',
|
'account' => 'Rekening',
|
||||||
'external_uri' => 'Externe URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Bedrag',
|
'matchingAmount' => 'Bedrag',
|
||||||
'destination' => 'Doel',
|
'destination' => 'Doel',
|
||||||
'source' => 'Bron',
|
'source' => 'Bron',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Je kan deze rekening niet gebruiken als bronrekening.',
|
'generic_invalid_source' => 'Je kan deze rekening niet gebruiken als bronrekening.',
|
||||||
'generic_invalid_destination' => 'Je kan deze rekening niet gebruiken als doelrekening.',
|
'generic_invalid_destination' => 'Je kan deze rekening niet gebruiken als doelrekening.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute moet groter of gelijk zijn aan :value.',
|
'gte.numeric' => ':attribute moet groter of gelijk zijn aan :value.',
|
||||||
'gt.numeric' => ':attribute moet groter zijn dan :value.',
|
'gt.numeric' => ':attribute moet groter zijn dan :value.',
|
||||||
'gte.file' => ':attribute moet groter of gelijk zijn aan :value kilobytes.',
|
'gte.file' => ':attribute moet groter of gelijk zijn aan :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Strona główna',
|
'home' => 'Strona główna',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Modyfikuj walutę ":name"',
|
'edit_currency' => 'Modyfikuj walutę ":name"',
|
||||||
'delete_currency' => 'Usuń walutę ":name"',
|
'delete_currency' => 'Usuń walutę ":name"',
|
||||||
'newPiggyBank' => 'Utwórz nową skarbonkę',
|
'newPiggyBank' => 'Utwórz nową skarbonkę',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Usuń powiązanie między transakcjami',
|
'delete_journal_link' => 'Usuń powiązanie między transakcjami',
|
||||||
'edit_object_group' => 'Modyfikuj grupę ":title"',
|
'edit_object_group' => 'Modyfikuj grupę ":title"',
|
||||||
'delete_object_group' => 'Usuń grupę ":title"',
|
'delete_object_group' => 'Usuń grupę ":title"',
|
||||||
'logout_others' => 'Wyloguj z pozostałych sesji',
|
'logout_others' => 'Wyloguj z pozostałych sesji'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Transakcja stworzona ":value"',
|
'search_modifier_created_on' => 'Transakcja stworzona ":value"',
|
||||||
'search_modifier_updated_on' => 'Transakcja zaktualizowana ":value"',
|
'search_modifier_updated_on' => 'Transakcja zaktualizowana ":value"',
|
||||||
'search_modifier_external_id' => 'Zewnętrzne ID to ":value"',
|
'search_modifier_external_id' => 'Zewnętrzne ID to ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Wewnętrzne odwołanie to ":value"',
|
'search_modifier_internal_reference' => 'Wewnętrzne odwołanie to ":value"',
|
||||||
'search_modifier_description_starts' => 'Opis to ":value"',
|
'search_modifier_description_starts' => 'Opis to ":value"',
|
||||||
'search_modifier_description_ends' => 'Opis kończy się na ":value"',
|
'search_modifier_description_ends' => 'Opis kończy się na ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Wewnętrzne odwołanie to ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Wewnętrzne odwołanie to ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'ID dziennika transakcji to..',
|
'rule_trigger_journal_id_choice' => 'ID dziennika transakcji to..',
|
||||||
'rule_trigger_journal_id' => 'ID dziennika transakcji to ":trigger_value"',
|
'rule_trigger_journal_id' => 'ID dziennika transakcji to ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'USUŃ transakcję (!)',
|
'rule_action_delete_transaction_choice' => 'USUŃ transakcję (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Wewnętrzny numer',
|
'pref_optional_tj_internal_reference' => 'Wewnętrzny numer',
|
||||||
'pref_optional_tj_notes' => 'Notatki',
|
'pref_optional_tj_notes' => 'Notatki',
|
||||||
'pref_optional_tj_attachments' => 'Załączniki',
|
'pref_optional_tj_attachments' => 'Załączniki',
|
||||||
'pref_optional_tj_external_uri' => 'Zewnętrzny adres URL',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Lokalizacja',
|
'pref_optional_tj_location' => 'Lokalizacja',
|
||||||
'pref_optional_tj_links' => 'Powiązane transakcje',
|
'pref_optional_tj_links' => 'Powiązane transakcje',
|
||||||
'optional_field_meta_dates' => 'Daty',
|
'optional_field_meta_dates' => 'Daty',
|
||||||
'optional_field_meta_business' => 'Biznesowe',
|
'optional_field_meta_business' => 'Biznesowe',
|
||||||
'optional_field_attachments' => 'Załączniki',
|
'optional_field_attachments' => 'Załączniki',
|
||||||
'optional_field_meta_data' => 'Opcjonalne metadane',
|
'optional_field_meta_data' => 'Opcjonalne metadane',
|
||||||
'external_uri' => 'Zewnętrzny adres URL',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Usuń dane',
|
'delete_stuff_header' => 'Usuń dane',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Typ konta',
|
'account_type' => 'Typ konta',
|
||||||
'created_at' => 'Utworzono',
|
'created_at' => 'Utworzono',
|
||||||
'account' => 'Konto',
|
'account' => 'Konto',
|
||||||
'external_uri' => 'Zewnętrzne URI',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Kwota',
|
'matchingAmount' => 'Kwota',
|
||||||
'destination' => 'Cel',
|
'destination' => 'Cel',
|
||||||
'source' => 'Źródło',
|
'source' => 'Źródło',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Nie możesz użyć tego konta jako konta źródłowego.',
|
'generic_invalid_source' => 'Nie możesz użyć tego konta jako konta źródłowego.',
|
||||||
'generic_invalid_destination' => 'Nie możesz użyć tego konta jako konta docelowego.',
|
'generic_invalid_destination' => 'Nie możesz użyć tego konta jako konta docelowego.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute musi być większy lub równy :value.',
|
'gte.numeric' => ':attribute musi być większy lub równy :value.',
|
||||||
'gt.numeric' => ':attribute musi być większy niż :value.',
|
'gt.numeric' => ':attribute musi być większy niż :value.',
|
||||||
'gte.file' => ':attribute musi mieć rozmiar większy niż lub równy :value kilobajtów.',
|
'gte.file' => ':attribute musi mieć rozmiar większy niż lub równy :value kilobajtów.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Início',
|
'home' => 'Início',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Editar moeda ":name"',
|
'edit_currency' => 'Editar moeda ":name"',
|
||||||
'delete_currency' => 'Excluir moeda ":name"',
|
'delete_currency' => 'Excluir moeda ":name"',
|
||||||
'newPiggyBank' => 'Criar um novo cofrinho',
|
'newPiggyBank' => 'Criar um novo cofrinho',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Eliminar ligação entre transações',
|
'delete_journal_link' => 'Eliminar ligação entre transações',
|
||||||
'edit_object_group' => 'Editar grupo ":title"',
|
'edit_object_group' => 'Editar grupo ":title"',
|
||||||
'delete_object_group' => 'Excluir grupo ":title"',
|
'delete_object_group' => 'Excluir grupo ":title"',
|
||||||
'logout_others' => 'Sair de outras sessões',
|
'logout_others' => 'Sair de outras sessões'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'A transação foi criada em ":value"',
|
'search_modifier_created_on' => 'A transação foi criada em ":value"',
|
||||||
'search_modifier_updated_on' => 'A transação foi atualizada pela última vez em ":value"',
|
'search_modifier_updated_on' => 'A transação foi atualizada pela última vez em ":value"',
|
||||||
'search_modifier_external_id' => 'O ID externo é ":value"',
|
'search_modifier_external_id' => 'O ID externo é ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'A referência interna é ":value"',
|
'search_modifier_internal_reference' => 'A referência interna é ":value"',
|
||||||
'search_modifier_description_starts' => 'Descrição é ":value"',
|
'search_modifier_description_starts' => 'Descrição é ":value"',
|
||||||
'search_modifier_description_ends' => 'Descrição termina com ":value"',
|
'search_modifier_description_ends' => 'Descrição termina com ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Referência interna é ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Referência interna é ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'ID do livro de transação é..',
|
'rule_trigger_journal_id_choice' => 'ID do livro de transação é..',
|
||||||
'rule_trigger_journal_id' => 'ID do livro de transação é ":trigger_value"',
|
'rule_trigger_journal_id' => 'ID do livro de transação é ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'EXCLUIR transação (!)',
|
'rule_action_delete_transaction_choice' => 'EXCLUIR transação (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Referência interna',
|
'pref_optional_tj_internal_reference' => 'Referência interna',
|
||||||
'pref_optional_tj_notes' => 'Notas',
|
'pref_optional_tj_notes' => 'Notas',
|
||||||
'pref_optional_tj_attachments' => 'Anexos',
|
'pref_optional_tj_attachments' => 'Anexos',
|
||||||
'pref_optional_tj_external_uri' => 'URL externa',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Localização',
|
'pref_optional_tj_location' => 'Localização',
|
||||||
'pref_optional_tj_links' => 'Links da transação',
|
'pref_optional_tj_links' => 'Links da transação',
|
||||||
'optional_field_meta_dates' => 'Datas',
|
'optional_field_meta_dates' => 'Datas',
|
||||||
'optional_field_meta_business' => 'Negócios',
|
'optional_field_meta_business' => 'Negócios',
|
||||||
'optional_field_attachments' => 'Anexos',
|
'optional_field_attachments' => 'Anexos',
|
||||||
'optional_field_meta_data' => 'Meta dados opcionais',
|
'optional_field_meta_data' => 'Meta dados opcionais',
|
||||||
'external_uri' => 'URL externa',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Apagar dados',
|
'delete_stuff_header' => 'Apagar dados',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Tipo de conta',
|
'account_type' => 'Tipo de conta',
|
||||||
'created_at' => 'Criado em',
|
'created_at' => 'Criado em',
|
||||||
'account' => 'Conta',
|
'account' => 'Conta',
|
||||||
'external_uri' => 'URI externo',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Total',
|
'matchingAmount' => 'Total',
|
||||||
'destination' => 'Destino',
|
'destination' => 'Destino',
|
||||||
'source' => 'Fonte',
|
'source' => 'Fonte',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Você não pode usar esta conta como conta de origem.',
|
'generic_invalid_source' => 'Você não pode usar esta conta como conta de origem.',
|
||||||
'generic_invalid_destination' => 'Você não pode usar esta conta como conta de destino.',
|
'generic_invalid_destination' => 'Você não pode usar esta conta como conta de destino.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute deve ser maior ou igual a :value.',
|
'gte.numeric' => ':attribute deve ser maior ou igual a :value.',
|
||||||
'gt.numeric' => 'O campo :attribute deve ser maior que :value.',
|
'gt.numeric' => 'O campo :attribute deve ser maior que :value.',
|
||||||
'gte.file' => 'O campo :attribute deve ser maior ou igual a :value kilobytes.',
|
'gte.file' => 'O campo :attribute deve ser maior ou igual a :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Inicio',
|
'home' => 'Inicio',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Editar moeda ":name"',
|
'edit_currency' => 'Editar moeda ":name"',
|
||||||
'delete_currency' => 'Apagar moeda ":name"',
|
'delete_currency' => 'Apagar moeda ":name"',
|
||||||
'newPiggyBank' => 'Criar mealheiro',
|
'newPiggyBank' => 'Criar mealheiro',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Apagar ligação entre transações',
|
'delete_journal_link' => 'Apagar ligação entre transações',
|
||||||
'edit_object_group' => 'Editar grupo ":title"',
|
'edit_object_group' => 'Editar grupo ":title"',
|
||||||
'delete_object_group' => 'Apagar grupo ":title"',
|
'delete_object_group' => 'Apagar grupo ":title"',
|
||||||
'logout_others' => 'Sair de outras sessões',
|
'logout_others' => 'Sair de outras sessões'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'A transacção foi criada a ":value"',
|
'search_modifier_created_on' => 'A transacção foi criada a ":value"',
|
||||||
'search_modifier_updated_on' => 'A transacção foi actualizada pela última vez a ":value"',
|
'search_modifier_updated_on' => 'A transacção foi actualizada pela última vez a ":value"',
|
||||||
'search_modifier_external_id' => 'ID externo é ":value"',
|
'search_modifier_external_id' => 'ID externo é ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'A referência interna é ":value"',
|
'search_modifier_internal_reference' => 'A referência interna é ":value"',
|
||||||
'search_modifier_description_starts' => 'A descrição é ":value"',
|
'search_modifier_description_starts' => 'A descrição é ":value"',
|
||||||
'search_modifier_description_ends' => 'A descrição acaba com ":value"',
|
'search_modifier_description_ends' => 'A descrição acaba com ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'A referência interna é ":trigger_value"',
|
'rule_trigger_internal_reference' => 'A referência interna é ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'O ID do diário de transações é..',
|
'rule_trigger_journal_id_choice' => 'O ID do diário de transações é..',
|
||||||
'rule_trigger_journal_id' => 'O ID do diário de transações é ":trigger_value"',
|
'rule_trigger_journal_id' => 'O ID do diário de transações é ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'APAGAR transacção (!)',
|
'rule_action_delete_transaction_choice' => 'APAGAR transacção (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Referência interna',
|
'pref_optional_tj_internal_reference' => 'Referência interna',
|
||||||
'pref_optional_tj_notes' => 'Notas',
|
'pref_optional_tj_notes' => 'Notas',
|
||||||
'pref_optional_tj_attachments' => 'Anexos',
|
'pref_optional_tj_attachments' => 'Anexos',
|
||||||
'pref_optional_tj_external_uri' => 'URL Externo',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Localização',
|
'pref_optional_tj_location' => 'Localização',
|
||||||
'pref_optional_tj_links' => 'Links transacionais',
|
'pref_optional_tj_links' => 'Links transacionais',
|
||||||
'optional_field_meta_dates' => 'Datas',
|
'optional_field_meta_dates' => 'Datas',
|
||||||
'optional_field_meta_business' => 'Empresariais',
|
'optional_field_meta_business' => 'Empresariais',
|
||||||
'optional_field_attachments' => 'Anexos',
|
'optional_field_attachments' => 'Anexos',
|
||||||
'optional_field_meta_data' => 'Meta data opcional',
|
'optional_field_meta_data' => 'Meta data opcional',
|
||||||
'external_uri' => 'URL Externo',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Apagar dados',
|
'delete_stuff_header' => 'Apagar dados',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Tipo de conta',
|
'account_type' => 'Tipo de conta',
|
||||||
'created_at' => 'Criado em',
|
'created_at' => 'Criado em',
|
||||||
'account' => 'Conta',
|
'account' => 'Conta',
|
||||||
'external_uri' => 'URI externo',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Montante',
|
'matchingAmount' => 'Montante',
|
||||||
'destination' => 'Destino',
|
'destination' => 'Destino',
|
||||||
'source' => 'Origem',
|
'source' => 'Origem',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Não pode utilizar esta conta como conta de origem.',
|
'generic_invalid_source' => 'Não pode utilizar esta conta como conta de origem.',
|
||||||
'generic_invalid_destination' => 'Não pode utilizar esta conta como conta de destino.',
|
'generic_invalid_destination' => 'Não pode utilizar esta conta como conta de destino.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => 'O :attribute deve ser maior ou igual a :value.',
|
'gte.numeric' => 'O :attribute deve ser maior ou igual a :value.',
|
||||||
'gt.numeric' => 'O :attribute deve ser maior que :value.',
|
'gt.numeric' => 'O :attribute deve ser maior que :value.',
|
||||||
'gte.file' => 'O :attribute deve ser maior ou igual a :value kilobytes.',
|
'gte.file' => 'O :attribute deve ser maior ou igual a :value kilobytes.',
|
||||||
|
@ -24,15 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'home' => 'Acasă',
|
'home' => 'Acasă',
|
||||||
'budgets' => 'Budgets',
|
|
||||||
'subscriptions' => 'Subscriptions',
|
|
||||||
'transactions' => 'Transactions',
|
|
||||||
'title_expenses' => 'Expenses',
|
|
||||||
'title_withdrawal' => 'Expenses',
|
|
||||||
'title_revenue' => 'Revenue / income',
|
|
||||||
'title_deposit' => 'Revenue / income',
|
|
||||||
'title_transfer' => 'Transfers',
|
|
||||||
'title_transfers' => 'Transfers',
|
|
||||||
'edit_currency' => 'Editează moneda ":name"',
|
'edit_currency' => 'Editează moneda ":name"',
|
||||||
'delete_currency' => 'Șterge moneda ":name"',
|
'delete_currency' => 'Șterge moneda ":name"',
|
||||||
'newPiggyBank' => 'Crează o nouă pușculiță',
|
'newPiggyBank' => 'Crează o nouă pușculiță',
|
||||||
@ -69,5 +60,5 @@ return [
|
|||||||
'delete_journal_link' => 'Şterge legătura dintre tranzacţii',
|
'delete_journal_link' => 'Şterge legătura dintre tranzacţii',
|
||||||
'edit_object_group' => 'Editați grupul de reguli ":title"',
|
'edit_object_group' => 'Editați grupul de reguli ":title"',
|
||||||
'delete_object_group' => 'Șterge grupul de reguli ":title"',
|
'delete_object_group' => 'Șterge grupul de reguli ":title"',
|
||||||
'logout_others' => 'Deconectare celelalte sesiuni',
|
'logout_others' => 'Deconectare celelalte sesiuni'
|
||||||
];
|
];
|
||||||
|
@ -291,6 +291,8 @@ return [
|
|||||||
'search_modifier_created_on' => 'Tranzacția a fost creată pe ":value"',
|
'search_modifier_created_on' => 'Tranzacția a fost creată pe ":value"',
|
||||||
'search_modifier_updated_on' => 'Tranzacția a fost actualizată ultima dată la ":value"',
|
'search_modifier_updated_on' => 'Tranzacția a fost actualizată ultima dată la ":value"',
|
||||||
'search_modifier_external_id' => 'ID extern este ":value"',
|
'search_modifier_external_id' => 'ID extern este ":value"',
|
||||||
|
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
||||||
|
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
||||||
'search_modifier_internal_reference' => 'Referința internă este ":value"',
|
'search_modifier_internal_reference' => 'Referința internă este ":value"',
|
||||||
'search_modifier_description_starts' => 'Descrierea este ":value"',
|
'search_modifier_description_starts' => 'Descrierea este ":value"',
|
||||||
'search_modifier_description_ends' => 'Descrierea se termină cu ":value"',
|
'search_modifier_description_ends' => 'Descrierea se termină cu ":value"',
|
||||||
@ -562,6 +564,8 @@ return [
|
|||||||
'rule_trigger_internal_reference' => 'Referința internă este ":trigger_value"',
|
'rule_trigger_internal_reference' => 'Referința internă este ":trigger_value"',
|
||||||
'rule_trigger_journal_id_choice' => 'ID-ul jurnalului de tranzacție este..',
|
'rule_trigger_journal_id_choice' => 'ID-ul jurnalului de tranzacție este..',
|
||||||
'rule_trigger_journal_id' => 'ID-ul jurnalului de tranzacții este ":trigger_value"',
|
'rule_trigger_journal_id' => 'ID-ul jurnalului de tranzacții este ":trigger_value"',
|
||||||
|
'rule_trigger_no_external_url' => 'Transaction has no external URL',
|
||||||
|
'rule_trigger_any_external_url' => 'Transaction has an external URL',
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
'rule_action_delete_transaction_choice' => 'Șterge tranzacția (!)',
|
'rule_action_delete_transaction_choice' => 'Șterge tranzacția (!)',
|
||||||
@ -711,14 +715,14 @@ return [
|
|||||||
'pref_optional_tj_internal_reference' => 'Referință internă',
|
'pref_optional_tj_internal_reference' => 'Referință internă',
|
||||||
'pref_optional_tj_notes' => 'Notițe',
|
'pref_optional_tj_notes' => 'Notițe',
|
||||||
'pref_optional_tj_attachments' => 'Ataşamente',
|
'pref_optional_tj_attachments' => 'Ataşamente',
|
||||||
'pref_optional_tj_external_uri' => 'URL extern',
|
'pref_optional_tj_external_url' => 'External URL',
|
||||||
'pref_optional_tj_location' => 'Locaţie',
|
'pref_optional_tj_location' => 'Locaţie',
|
||||||
'pref_optional_tj_links' => 'Link-uri de tranzacție',
|
'pref_optional_tj_links' => 'Link-uri de tranzacție',
|
||||||
'optional_field_meta_dates' => 'Date',
|
'optional_field_meta_dates' => 'Date',
|
||||||
'optional_field_meta_business' => 'Afaceri',
|
'optional_field_meta_business' => 'Afaceri',
|
||||||
'optional_field_attachments' => 'Ataşamente',
|
'optional_field_attachments' => 'Ataşamente',
|
||||||
'optional_field_meta_data' => 'Meta date opționale',
|
'optional_field_meta_data' => 'Meta date opționale',
|
||||||
'external_uri' => 'URL extern',
|
'external_url' => 'External URL',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
'delete_stuff_header' => 'Ștergeți datele',
|
'delete_stuff_header' => 'Ștergeți datele',
|
||||||
|
@ -46,7 +46,7 @@ return [
|
|||||||
'account_type' => 'Tip de cont',
|
'account_type' => 'Tip de cont',
|
||||||
'created_at' => 'Creat la',
|
'created_at' => 'Creat la',
|
||||||
'account' => 'Cont',
|
'account' => 'Cont',
|
||||||
'external_uri' => 'URI extern',
|
'external_url' => 'External URL',
|
||||||
'matchingAmount' => 'Sumă',
|
'matchingAmount' => 'Sumă',
|
||||||
'destination' => 'Destinație',
|
'destination' => 'Destinație',
|
||||||
'source' => 'Sursă',
|
'source' => 'Sursă',
|
||||||
|
@ -214,6 +214,9 @@ return [
|
|||||||
'generic_invalid_source' => 'Nu puteți utiliza acest cont ca și cont sursă.',
|
'generic_invalid_source' => 'Nu puteți utiliza acest cont ca și cont sursă.',
|
||||||
'generic_invalid_destination' => 'Nu puteți utiliza acest cont ca și cont de destinație.',
|
'generic_invalid_destination' => 'Nu puteți utiliza acest cont ca și cont de destinație.',
|
||||||
|
|
||||||
|
'generic_no_source' => 'You must submit source account information.',
|
||||||
|
'generic_no_destination' => 'You must submit destination account information.',
|
||||||
|
|
||||||
'gte.numeric' => ':attribute trebuie să fie mai mare sau egal cu :value.',
|
'gte.numeric' => ':attribute trebuie să fie mai mare sau egal cu :value.',
|
||||||
'gt.numeric' => ':attribute trebuie să fie mai mare decât :value.',
|
'gt.numeric' => ':attribute trebuie să fie mai mare decât :value.',
|
||||||
'gte.file' => ':attribute trebuie să fie mai mare sau egal cu :value kilobytes.',
|
'gte.file' => ':attribute trebuie să fie mai mare sau egal cu :value kilobytes.',
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user