mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Update files and languages.
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
# 4.7.5.1
|
||||
- [Issue 1531](https://github.com/firefly-iii/firefly-iii/issues/1531), the database routine incorrectly reports empty categories.
|
||||
- [Issue 1532](https://github.com/firefly-iii/firefly-iii/issues/1532), broken dropdown for autosuggest things.
|
||||
- [Issue 1533](https://github.com/firefly-iii/firefly-iii/issues/1533), fix where the import could not import category names.
|
||||
- [Issue 1538](https://github.com/firefly-iii/firefly-iii/issues/1538), fix a bug where Spectre would not work when ignoring rules.
|
||||
- [Issue 1542](https://github.com/firefly-iii/firefly-iii/issues/1542), fix a bug where the importer was incapable of generating new currencies.
|
||||
- [Issue 1541](https://github.com/firefly-iii/firefly-iii/issues/1541), no longer ignore composer.lock in Docker ignore.
|
||||
- Bills are stored inactive.
|
||||
|
||||
# 4.7.5
|
||||
- A new feature called "recurring transactions" that will make Firefly III automatically create transactions for you.
|
||||
- New API end points for attachments, available budgets, budgets, budget limits, categories, configuration, currency exchange rates, journal links, link types, piggy banks, preferences, recurring transactions, rules, rule groups and tags.
|
||||
|
@@ -16,7 +16,7 @@ const pkgdef :Spk.PackageDefinition = (
|
||||
manifest = (
|
||||
appTitle = (defaultText = "Firefly III"),
|
||||
appVersion = 14,
|
||||
appMarketingVersion = (defaultText = "4.7.5"),
|
||||
appMarketingVersion = (defaultText = "4.7.5.1"),
|
||||
|
||||
actions = [
|
||||
# Define your "new document" handlers here.
|
||||
|
12
changelog.md
12
changelog.md
@@ -5,12 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [4.7.5.1] - 2018-07-13
|
||||
### Fixed
|
||||
- #1531, the database routine incorrectly reports empty categories.
|
||||
- #1532, broken dropdown for autosuggest things.
|
||||
- #1533, fix where the import could not import category names.
|
||||
- #1538, fix a bug where Spectre would not work when ignoring rules.
|
||||
- #1542, fix a bug where the importer was incapable of generating new currencies.
|
||||
- #1541, no longer ignore composer.lock in Docker ignore.
|
||||
- [Issue 1531](https://github.com/firefly-iii/firefly-iii/issues/1531), the database routine incorrectly reports empty categories.
|
||||
- [Issue 1532](https://github.com/firefly-iii/firefly-iii/issues/1532), broken dropdown for autosuggest things.
|
||||
- [Issue 1533](https://github.com/firefly-iii/firefly-iii/issues/1533), fix where the import could not import category names.
|
||||
- [Issue 1538](https://github.com/firefly-iii/firefly-iii/issues/1538), fix a bug where Spectre would not work when ignoring rules.
|
||||
- [Issue 1542](https://github.com/firefly-iii/firefly-iii/issues/1542), fix a bug where the importer was incapable of generating new currencies.
|
||||
- [Issue 1541](https://github.com/firefly-iii/firefly-iii/issues/1541), no longer ignore composer.lock in Docker ignore.
|
||||
- Bills are stored inactive.
|
||||
|
||||
## [4.7.5] - 2018-07-02
|
||||
|
341
composer.lock
generated
341
composer.lock
generated
@@ -448,33 +448,39 @@
|
||||
},
|
||||
{
|
||||
"name": "doctrine/common",
|
||||
"version": "v2.8.1",
|
||||
"version": "v2.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/common.git",
|
||||
"reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
|
||||
"reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
|
||||
"reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
|
||||
"url": "https://api.github.com/repos/doctrine/common/zipball/a210246d286c77d2b89040f8691ba7b3a713d2c1",
|
||||
"reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"doctrine/annotations": "1.*",
|
||||
"doctrine/cache": "1.*",
|
||||
"doctrine/collections": "1.*",
|
||||
"doctrine/inflector": "1.*",
|
||||
"doctrine/lexer": "1.*",
|
||||
"php": "~7.1"
|
||||
"doctrine/annotations": "^1.0",
|
||||
"doctrine/cache": "^1.0",
|
||||
"doctrine/collections": "^1.0",
|
||||
"doctrine/event-manager": "^1.0",
|
||||
"doctrine/inflector": "^1.0",
|
||||
"doctrine/lexer": "^1.0",
|
||||
"doctrine/persistence": "^1.0",
|
||||
"doctrine/reflection": "^1.0",
|
||||
"php": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^5.7"
|
||||
"doctrine/coding-standard": "^1.0",
|
||||
"phpunit/phpunit": "^6.3",
|
||||
"squizlabs/php_codesniffer": "^3.0",
|
||||
"symfony/phpunit-bridge": "^4.0.5"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "2.8.x-dev"
|
||||
"dev-master": "2.9.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
@@ -506,10 +512,14 @@
|
||||
{
|
||||
"name": "Johannes Schmitt",
|
||||
"email": "schmittjoh@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Common Library for Doctrine projects",
|
||||
"homepage": "http://www.doctrine-project.org",
|
||||
"homepage": "https://www.doctrine-project.org",
|
||||
"keywords": [
|
||||
"annotations",
|
||||
"collections",
|
||||
@@ -517,7 +527,7 @@
|
||||
"persistence",
|
||||
"spl"
|
||||
],
|
||||
"time": "2017-08-31T08:43:38+00:00"
|
||||
"time": "2018-07-12T21:16:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/dbal",
|
||||
@@ -594,6 +604,80 @@
|
||||
],
|
||||
"time": "2018-04-07T18:44:18+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/event-manager",
|
||||
"version": "v1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/event-manager.git",
|
||||
"reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
|
||||
"reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/common": "<2.9@dev"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/coding-standard": "^4.0",
|
||||
"phpunit/phpunit": "^7.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Doctrine\\Common\\": "lib/Doctrine/Common"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Roman Borschel",
|
||||
"email": "roman@code-factory.org"
|
||||
},
|
||||
{
|
||||
"name": "Benjamin Eberlei",
|
||||
"email": "kontakt@beberlei.de"
|
||||
},
|
||||
{
|
||||
"name": "Guilherme Blanco",
|
||||
"email": "guilhermeblanco@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jonathan Wage",
|
||||
"email": "jonwage@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Johannes Schmitt",
|
||||
"email": "schmittjoh@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Doctrine Event Manager component",
|
||||
"homepage": "https://www.doctrine-project.org/projects/event-manager.html",
|
||||
"keywords": [
|
||||
"event",
|
||||
"eventdispatcher",
|
||||
"eventmanager"
|
||||
],
|
||||
"time": "2018-06-11T11:59:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/inflector",
|
||||
"version": "v1.3.0",
|
||||
@@ -715,6 +799,159 @@
|
||||
],
|
||||
"time": "2014-09-09T13:34:57+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/persistence",
|
||||
"version": "v1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/persistence.git",
|
||||
"reference": "17896f6d56a2794a1619e019596ae627aabd8fd5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/persistence/zipball/17896f6d56a2794a1619e019596ae627aabd8fd5",
|
||||
"reference": "17896f6d56a2794a1619e019596ae627aabd8fd5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"doctrine/annotations": "^1.0",
|
||||
"doctrine/cache": "^1.0",
|
||||
"doctrine/collections": "^1.0",
|
||||
"doctrine/event-manager": "^1.0",
|
||||
"doctrine/reflection": "^1.0",
|
||||
"php": "^7.1"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/common": "<2.9@dev"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/coding-standard": "^4.0",
|
||||
"phpstan/phpstan": "^0.8",
|
||||
"phpunit/phpunit": "^7.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Doctrine\\Common\\": "lib/Doctrine/Common"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Roman Borschel",
|
||||
"email": "roman@code-factory.org"
|
||||
},
|
||||
{
|
||||
"name": "Benjamin Eberlei",
|
||||
"email": "kontakt@beberlei.de"
|
||||
},
|
||||
{
|
||||
"name": "Guilherme Blanco",
|
||||
"email": "guilhermeblanco@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jonathan Wage",
|
||||
"email": "jonwage@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Johannes Schmitt",
|
||||
"email": "schmittjoh@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Doctrine Persistence abstractions.",
|
||||
"homepage": "https://doctrine-project.org/projects/persistence.html",
|
||||
"keywords": [
|
||||
"persistence"
|
||||
],
|
||||
"time": "2018-06-14T18:57:48+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/reflection",
|
||||
"version": "v1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/reflection.git",
|
||||
"reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
|
||||
"reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"doctrine/annotations": "^1.0",
|
||||
"ext-tokenizer": "*",
|
||||
"php": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/coding-standard": "^4.0",
|
||||
"doctrine/common": "^2.8",
|
||||
"phpstan/phpstan": "^0.9.2",
|
||||
"phpstan/phpstan-phpunit": "^0.9.4",
|
||||
"phpunit/phpunit": "^7.0",
|
||||
"squizlabs/php_codesniffer": "^3.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Doctrine\\Common\\": "lib/Doctrine/Common"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Roman Borschel",
|
||||
"email": "roman@code-factory.org"
|
||||
},
|
||||
{
|
||||
"name": "Benjamin Eberlei",
|
||||
"email": "kontakt@beberlei.de"
|
||||
},
|
||||
{
|
||||
"name": "Guilherme Blanco",
|
||||
"email": "guilhermeblanco@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jonathan Wage",
|
||||
"email": "jonwage@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Johannes Schmitt",
|
||||
"email": "schmittjoh@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Doctrine Reflection component",
|
||||
"homepage": "https://www.doctrine-project.org/projects/reflection.html",
|
||||
"keywords": [
|
||||
"reflection"
|
||||
],
|
||||
"time": "2018-06-14T14:45:07+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dragonmantank/cron-expression",
|
||||
"version": "v2.2.0",
|
||||
@@ -1150,16 +1387,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
"version": "v5.6.26",
|
||||
"version": "v5.6.27",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/framework.git",
|
||||
"reference": "7047df295e77cecb6a2f84736a732af66cc6789c"
|
||||
"reference": "2fe661f2444410a576aa40054ad9b7fe0bb5cee5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/7047df295e77cecb6a2f84736a732af66cc6789c",
|
||||
"reference": "7047df295e77cecb6a2f84736a732af66cc6789c",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/2fe661f2444410a576aa40054ad9b7fe0bb5cee5",
|
||||
"reference": "2fe661f2444410a576aa40054ad9b7fe0bb5cee5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1285,7 +1522,7 @@
|
||||
"framework",
|
||||
"laravel"
|
||||
],
|
||||
"time": "2018-06-20T14:21:11+00:00"
|
||||
"time": "2018-07-10T13:47:01+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/passport",
|
||||
@@ -2079,16 +2316,16 @@
|
||||
},
|
||||
{
|
||||
"name": "paragonie/random_compat",
|
||||
"version": "v2.0.15",
|
||||
"version": "v2.0.17",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/paragonie/random_compat.git",
|
||||
"reference": "10bcb46e8f3d365170f6de9d05245aa066b81f09"
|
||||
"reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/10bcb46e8f3d365170f6de9d05245aa066b81f09",
|
||||
"reference": "10bcb46e8f3d365170f6de9d05245aa066b81f09",
|
||||
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
|
||||
"reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2124,7 +2361,7 @@
|
||||
"pseudorandom",
|
||||
"random"
|
||||
],
|
||||
"time": "2018-06-08T15:26:40+00:00"
|
||||
"time": "2018-07-04T16:31:37+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpseclib/phpseclib",
|
||||
@@ -2698,16 +2935,16 @@
|
||||
},
|
||||
{
|
||||
"name": "swiftmailer/swiftmailer",
|
||||
"version": "v6.1.0",
|
||||
"version": "v6.1.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/swiftmailer/swiftmailer.git",
|
||||
"reference": "0ff595e1d9d7d1c929b2a5f7b774bbcfbbd81587"
|
||||
"reference": "aa899fef280b1c1aec8d5d4ac069af7f80c89a23"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0ff595e1d9d7d1c929b2a5f7b774bbcfbbd81587",
|
||||
"reference": "0ff595e1d9d7d1c929b2a5f7b774bbcfbbd81587",
|
||||
"url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/aa899fef280b1c1aec8d5d4ac069af7f80c89a23",
|
||||
"reference": "aa899fef280b1c1aec8d5d4ac069af7f80c89a23",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2753,7 +2990,7 @@
|
||||
"mail",
|
||||
"mailer"
|
||||
],
|
||||
"time": "2018-07-02T20:24:38+00:00"
|
||||
"time": "2018-07-04T11:12:44+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/console",
|
||||
@@ -3956,16 +4193,16 @@
|
||||
},
|
||||
{
|
||||
"name": "zendframework/zend-diactoros",
|
||||
"version": "1.8.0",
|
||||
"version": "1.8.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zendframework/zend-diactoros.git",
|
||||
"reference": "11c9c1835e60eef6f9234377a480fcec096ebd9e"
|
||||
"reference": "63d920d1c9ebc009d860c3666593a66298727dd6"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/11c9c1835e60eef6f9234377a480fcec096ebd9e",
|
||||
"reference": "11c9c1835e60eef6f9234377a480fcec096ebd9e",
|
||||
"url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/63d920d1c9ebc009d860c3666593a66298727dd6",
|
||||
"reference": "63d920d1c9ebc009d860c3666593a66298727dd6",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4015,7 +4252,7 @@
|
||||
"psr",
|
||||
"psr-7"
|
||||
],
|
||||
"time": "2018-06-27T18:52:43+00:00"
|
||||
"time": "2018-07-09T21:17:27+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [
|
||||
@@ -4258,16 +4495,16 @@
|
||||
},
|
||||
{
|
||||
"name": "fzaninotto/faker",
|
||||
"version": "v1.7.1",
|
||||
"version": "v1.8.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/fzaninotto/Faker.git",
|
||||
"reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d"
|
||||
"reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
|
||||
"reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
|
||||
"url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
|
||||
"reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4275,7 +4512,7 @@
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-intl": "*",
|
||||
"phpunit/phpunit": "^4.0 || ^5.0",
|
||||
"phpunit/phpunit": "^4.8.35 || ^5.7",
|
||||
"squizlabs/php_codesniffer": "^1.5"
|
||||
},
|
||||
"type": "library",
|
||||
@@ -4304,7 +4541,7 @@
|
||||
"faker",
|
||||
"fixtures"
|
||||
],
|
||||
"time": "2017-08-15T16:48:10+00:00"
|
||||
"time": "2018-07-12T10:23:15+00:00"
|
||||
},
|
||||
{
|
||||
"name": "hamcrest/hamcrest-php",
|
||||
@@ -5255,12 +5492,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "5c802c6300dca269edde06c6ae8c7eb561de3176"
|
||||
"reference": "731d60f7fc78a8816dae7049df255cd55e30c313"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/5c802c6300dca269edde06c6ae8c7eb561de3176",
|
||||
"reference": "5c802c6300dca269edde06c6ae8c7eb561de3176",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/731d60f7fc78a8816dae7049df255cd55e30c313",
|
||||
"reference": "731d60f7fc78a8816dae7049df255cd55e30c313",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
@@ -5311,7 +5548,7 @@
|
||||
"laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
|
||||
"magento/magento1ce": ">=1.5.0.1,<1.9.3.2",
|
||||
"magento/magento1ee": ">=1.9,<1.14.3.2",
|
||||
"magento/magento2ce": ">=2,<2.3",
|
||||
"magento/product-community-edition": ">=2,<2.2.5",
|
||||
"monolog/monolog": ">=1.8,<1.12",
|
||||
"namshi/jose": "<2.2",
|
||||
"onelogin/php-saml": "<2.10.4",
|
||||
@@ -5342,6 +5579,8 @@
|
||||
"squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
|
||||
"stormpath/sdk": ">=0,<9.9.99",
|
||||
"swiftmailer/swiftmailer": ">=4,<5.4.5",
|
||||
"sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
|
||||
"sylius/sylius": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
|
||||
"symfony/dependency-injection": ">=2,<2.0.17",
|
||||
"symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
|
||||
"symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2",
|
||||
@@ -5362,7 +5601,7 @@
|
||||
"symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
|
||||
"symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
|
||||
"thelia/backoffice-default-template": ">=2.1,<2.1.2",
|
||||
"thelia/thelia": ">=2.1.0-beta1,<2.1.3|>=2.1,<2.1.2",
|
||||
"thelia/thelia": ">=2.1,<2.1.2|>=2.1.0-beta1,<2.1.3",
|
||||
"titon/framework": ">=0,<9.9.99",
|
||||
"twig/twig": "<1.20",
|
||||
"typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.22|>=8,<8.7.5",
|
||||
@@ -5414,7 +5653,7 @@
|
||||
}
|
||||
],
|
||||
"description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
|
||||
"time": "2018-07-03T10:42:36+00:00"
|
||||
"time": "2018-07-09T14:09:25+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/code-unit-reverse-lookup",
|
||||
@@ -5463,16 +5702,16 @@
|
||||
},
|
||||
{
|
||||
"name": "sebastian/comparator",
|
||||
"version": "3.0.1",
|
||||
"version": "3.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/comparator.git",
|
||||
"reference": "591a30922f54656695e59b1f39501aec513403da"
|
||||
"reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/591a30922f54656695e59b1f39501aec513403da",
|
||||
"reference": "591a30922f54656695e59b1f39501aec513403da",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
|
||||
"reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -5523,7 +5762,7 @@
|
||||
"compare",
|
||||
"equality"
|
||||
],
|
||||
"time": "2018-06-14T15:05:28+00:00"
|
||||
"time": "2018-07-12T15:12:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/diff",
|
||||
|
@@ -608,6 +608,7 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?',
|
||||
'cannot_delete_currency' => '„:name” konnte nicht gelöscht werden, da dieser noch verwendet wird',
|
||||
'deleted_currency' => 'Währung :name gelöscht',
|
||||
'created_currency' => 'Währung :name erstellt',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Währung :name aktualisiert',
|
||||
'ask_site_owner' => 'Bitte fragen sie :owner zum Hinzufügen, Entfernen oder Bearbeiten von Währungen.',
|
||||
'currencies_intro' => 'Firefly III unterstützt verschiedene Währungen, welche hier eingestellt und aktiviert werden können.',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'No puede eliminar :name porque todavía esta en uso.',
|
||||
'deleted_currency' => 'Moneda :name eliminada',
|
||||
'created_currency' => 'Moneda :name creada',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Moneda :name actualizada',
|
||||
'ask_site_owner' => 'Por favor pregunte :owner por agregar,elimine o edite monedas.',
|
||||
'currencies_intro' => 'Firefly III respalda varias monedas que usted puede establecer y habilitar aquí.',
|
||||
|
@@ -27,8 +27,8 @@ return [
|
||||
'locale' => 'fr, French, fr_FR, fr_FR.utf8, fr_FR.UTF-8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e %B %Y',
|
||||
'month_and_date_day' => '%A %B %e, %Y',
|
||||
'month_and_day_no_year' => '%B %e',
|
||||
'month_and_date_day' => '%A %e %B %Y',
|
||||
'month_and_day_no_year' => '%e %B',
|
||||
'date_time' => '%B %e %Y @ %T',
|
||||
'specific_day' => '%e %B %Y',
|
||||
'week_in_year' => 'Semaine %W %Y',
|
||||
@@ -41,11 +41,11 @@ return [
|
||||
'week_in_year_js' => '[Week] w, YYYY',
|
||||
'year_js' => 'YYYY',
|
||||
'half_year_js' => 'Q YYYY',
|
||||
'dow_1' => 'Monday',
|
||||
'dow_2' => 'Tuesday',
|
||||
'dow_3' => 'Wednesday',
|
||||
'dow_4' => 'Thursday',
|
||||
'dow_5' => 'Friday',
|
||||
'dow_6' => 'Saturday',
|
||||
'dow_7' => 'Sunday',
|
||||
'dow_1' => 'Lundi',
|
||||
'dow_2' => 'Mardi',
|
||||
'dow_3' => 'Mercredi',
|
||||
'dow_4' => 'Jeudi',
|
||||
'dow_5' => 'Vendredi',
|
||||
'dow_6' => 'Samedi',
|
||||
'dow_7' => 'Dimanche',
|
||||
];
|
||||
|
@@ -34,6 +34,6 @@ return [
|
||||
'transactions-index' => 'Ces dépenses, dépôts et transferts ne sont pas particulièrement imaginatifs. Ils ont été générés automatiquement.',
|
||||
'piggy-banks-index' => 'Comme vous pouvez le voir, il y a trois tirelires. Utilisez les boutons plus et moins pour influer sur le montant d’argent dans chaque tirelire. Cliquez sur le nom de la tirelire pour voir l’administration pour chaque tirelire.',
|
||||
'import-index' => 'Tout fichier CSV peut être importé dans Firefly III. L\'importation de données depuis bunq et Specter est également prise en charge. D\'autres banques et agrégateurs financiers seront mis en place dans le futur. En tant qu\'utilisateur du site de démonstration, vous ne pouvez voir que le «faux» service en action. Il va générer des transactions aléatoires pour vous montrer comment se déroule le processus.',
|
||||
'recurring-index' => 'Please note that this feature is under active development and may not work as expected.',
|
||||
'recurring-create' => 'Please note that this feature is under active development and may not work as expected.',
|
||||
'recurring-index' => 'Veuillez noter que cette fonctionnalité est en cours de développement et peut ne pas fonctionner comme prévu.',
|
||||
'recurring-create' => 'Veuillez noter que cette fonctionnalité est en cours de développement et peut ne pas fonctionner comme prévu.',
|
||||
];
|
||||
|
@@ -465,7 +465,7 @@ return [
|
||||
'pref_two_factor_auth_code_help' => 'Scanner le code QR avec une application sur votre téléphone comme Authy ou Google Authenticator et entrez le code généré.',
|
||||
'pref_two_factor_auth_reset_code' => 'Réinitialiser le code de vérification',
|
||||
'pref_two_factor_auth_disable_2fa' => 'Désactiver l\'authentification en deux étapes',
|
||||
'2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.',
|
||||
'2fa_use_secret_instead' => 'Si vous ne pouvez pas scanner le code QR, vous pouvez utiliser le secret : :secret.',
|
||||
'pref_save_settings' => 'Enregistrer les paramètres',
|
||||
'saved_preferences' => 'Préférences enregistrées!',
|
||||
'preferences_general' => 'Général',
|
||||
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Impossible de supprimer :name car il est encore utilisé.',
|
||||
'deleted_currency' => 'Devise ":name" supprimée',
|
||||
'created_currency' => 'Devise ":name" créée',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Devise ":name" mise à jour',
|
||||
'ask_site_owner' => 'Merci de demander à :owner pour ajouter, modifier ou supprimer des devises.',
|
||||
'currencies_intro' => 'Firefly III prend en charge diverses devises que vous pouvez configurer et activer ici.',
|
||||
@@ -1062,7 +1063,7 @@ return [
|
||||
'instance_configuration' => 'Configuration',
|
||||
'firefly_instance_configuration' => 'Options de configuration pour Firefly III',
|
||||
'setting_single_user_mode' => 'Mode utilisateur unique',
|
||||
'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).',
|
||||
'setting_single_user_mode_explain' => 'Par défaut, Firefly III accepte uniquement une (1) inscription : vous. Il s\'agit d\'une mesure de sécurité qui empêche les inconnus d\'utiliser votre instance, à moins que vous ne les y autorisiez. Les inscriptions futures sont bloquées. Lorsque vous désactivez cette case, d\'autres personnes peuvent utiliser votre instance, en supposant qu\'elles puissent l\'atteindre (quand elle est connectée à Internet).',
|
||||
'store_configuration' => 'Sauvegarder la configuration',
|
||||
'single_user_administration' => 'Gestion de l\'utilisateur pour :email',
|
||||
'edit_user' => 'Modifier l\'utilisateur :email',
|
||||
@@ -1134,8 +1135,8 @@ return [
|
||||
'is (partially) refunded by_inward' => 'est (partiellement) remboursé par',
|
||||
'is (partially) paid for by_inward' => 'est (partiellement) payé par',
|
||||
'is (partially) reimbursed by_inward' => 'est (partiellement) remboursé par',
|
||||
'inward_transaction' => 'Inward transaction',
|
||||
'outward_transaction' => 'Outward transaction',
|
||||
'inward_transaction' => 'Opération entrante',
|
||||
'outward_transaction' => 'Opération sortante',
|
||||
'relates to_outward' => 'se rapporte à',
|
||||
'(partially) refunds_outward' => 'rembourse (partiellement)',
|
||||
'(partially) pays for_outward' => 'paye (partiellement) pour',
|
||||
@@ -1157,9 +1158,9 @@ return [
|
||||
'cannot_convert_split_journal' => 'Vous ne pouvez pas convertir une transaction ventilée',
|
||||
|
||||
// Import page (general strings only)
|
||||
'import_index_title' => 'Import transactions into Firefly III',
|
||||
'import_index_title' => 'Importer des opérations dans Firefly III',
|
||||
'import_data' => 'Importer des données',
|
||||
'import_transactions' => 'Import transactions',
|
||||
'import_transactions' => 'Importer des opérations',
|
||||
|
||||
// sandstorm.io errors and messages:
|
||||
'sandstorm_not_available' => 'Cette fonction n\'est pas disponible lorsque vous utilisez Firefly III dans un environnement Sandstorm.io.',
|
||||
@@ -1211,66 +1212,66 @@ return [
|
||||
'no_bills_create_default' => 'Créer une facture',
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Recurring transactions',
|
||||
'no_recurring_title_default' => 'Let\'s create a recurring transaction!',
|
||||
'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.',
|
||||
'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.',
|
||||
'no_recurring_create_default' => 'Create a recurring transaction',
|
||||
'make_new_recurring' => 'Create a recurring transaction',
|
||||
'recurring_daily' => 'Every day',
|
||||
'recurring_weekly' => 'Every week on :weekday',
|
||||
'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day',
|
||||
'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday',
|
||||
'recurring_yearly' => 'Every year on :date',
|
||||
'overview_for_recurrence' => 'Overview for recurring transaction ":title"',
|
||||
'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.',
|
||||
'created_transactions' => 'Related transactions',
|
||||
'expected_Withdrawals' => 'Expected withdrawals',
|
||||
'expected_Deposits' => 'Expected deposits',
|
||||
'expected_Transfers' => 'Expected transfers',
|
||||
'created_Withdrawals' => 'Created withdrawals',
|
||||
'created_Deposits' => 'Created deposits',
|
||||
'created_Transfers' => 'Created transfers',
|
||||
'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)',
|
||||
'recurrences' => 'Opérations périodiques',
|
||||
'no_recurring_title_default' => 'Créons une opération périodique !',
|
||||
'no_recurring_intro_default' => 'Vous n’avez pas encore d\'opérations périodiques. Vous pouvez en utiliser pour que Firefly III crée automatiquement des opérations pour vous.',
|
||||
'no_recurring_imperative_default' => 'Il s’agit d’une fonctionnalité plutôt poussée, mais elle peut être très utile. Assurez-vous de lire la documentation ( icône ? en haut à droite) avant de continuer.',
|
||||
'no_recurring_create_default' => 'Créer une opération périodique',
|
||||
'make_new_recurring' => 'Créer une opération périodique',
|
||||
'recurring_daily' => 'Tous les jours',
|
||||
'recurring_weekly' => 'Chaque semaine le :weekday',
|
||||
'recurring_monthly' => 'Le :dayOfMonth(er/ème) jour de chaque mois',
|
||||
'recurring_ndom' => 'Le :dayOfMonth(er/ème) :weekday de chaque mois',
|
||||
'recurring_yearly' => 'Chaque année le :date',
|
||||
'overview_for_recurrence' => 'Aperçu de l’opération périodique ":title"',
|
||||
'warning_duplicates_repetitions' => 'Dans de rares cas, des dates apparaissent en double dans cette liste. Cela peut arriver lorsque plusieurs répétitions se superposent. Firefly III génèrera toujours une seule transaction par jour.',
|
||||
'created_transactions' => 'Opérations associées',
|
||||
'expected_Withdrawals' => 'Dépenses attendues',
|
||||
'expected_Deposits' => 'Revenus attendus',
|
||||
'expected_Transfers' => 'Transferts attendus',
|
||||
'created_Withdrawals' => 'Dépenses créées',
|
||||
'created_Deposits' => 'Revenus créés',
|
||||
'created_Transfers' => 'Transferts créés',
|
||||
'created_from_recurrence' => 'Créé à partir de l\'opération périodique ":title" (#:id)',
|
||||
|
||||
'recurring_meta_field_tags' => 'Tags',
|
||||
'recurring_meta_field_tags' => 'Mots-clés',
|
||||
'recurring_meta_field_notes' => 'Notes',
|
||||
'recurring_meta_field_bill_id' => 'Bill',
|
||||
'recurring_meta_field_piggy_bank_id' => 'Piggy bank',
|
||||
'create_new_recurrence' => 'Create new recurring transaction',
|
||||
'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.',
|
||||
'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.',
|
||||
'no_currency' => '(no currency)',
|
||||
'mandatory_for_recurring' => 'Mandatory recurrence information',
|
||||
'mandatory_for_transaction' => 'Mandatory transaction information',
|
||||
'optional_for_recurring' => 'Optional recurrence information',
|
||||
'optional_for_transaction' => 'Optional transaction information',
|
||||
'change_date_other_options' => 'Change the "first date" to see more options.',
|
||||
'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created',
|
||||
'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.',
|
||||
'repeat_forever' => 'Repeat forever',
|
||||
'repeat_until_date' => 'Repeat until date',
|
||||
'repeat_times' => 'Repeat a number of times',
|
||||
'recurring_skips_one' => 'Every other',
|
||||
'recurring_skips_more' => 'Skips :count occurrences',
|
||||
'store_new_recurrence' => 'Store recurring transaction',
|
||||
'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.',
|
||||
'edit_recurrence' => 'Edit recurring transaction ":title"',
|
||||
'recurring_repeats_until' => 'Repeats until :date',
|
||||
'recurring_repeats_forever' => 'Repeats forever',
|
||||
'recurring_repeats_x_times' => 'Repeats :count time(s)',
|
||||
'update_recurrence' => 'Update recurring transaction',
|
||||
'updated_recurrence' => 'Updated recurring transaction ":title"',
|
||||
'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.',
|
||||
'delete_recurring' => 'Delete recurring transaction ":title"',
|
||||
'new_recurring_transaction' => 'New recurring transaction',
|
||||
'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?',
|
||||
'do_nothing' => 'Just create the transaction',
|
||||
'skip_transaction' => 'Skip the occurence',
|
||||
'jump_to_friday' => 'Create the transaction on the previous Friday instead',
|
||||
'jump_to_monday' => 'Create the transaction on the next Monday instead',
|
||||
'will_jump_friday' => 'Will be created on Friday instead of the weekends.',
|
||||
'will_jump_monday' => 'Will be created on Monday instead of the weekends.',
|
||||
'except_weekends' => 'Except weekends',
|
||||
'recurrence_deleted' => 'Recurring transaction ":title" deleted',
|
||||
'recurring_meta_field_bill_id' => 'Facture',
|
||||
'recurring_meta_field_piggy_bank_id' => 'Tirelire',
|
||||
'create_new_recurrence' => 'Créer une nouvelle opération périodique',
|
||||
'help_first_date' => 'Indiquer la première occurrence attendue. Doit être dans le futur.',
|
||||
'help_first_date_no_past' => 'Indiquer la première occurrence attendue. Firefly III ne créera pas d\'opérations dans le passé.',
|
||||
'no_currency' => '(pas de devise)',
|
||||
'mandatory_for_recurring' => 'Informations de répétition obligatoires',
|
||||
'mandatory_for_transaction' => 'Informations d\'opération obligatoires',
|
||||
'optional_for_recurring' => 'Informations de répétition optionnelles',
|
||||
'optional_for_transaction' => 'Informations d\'opération optionnelles',
|
||||
'change_date_other_options' => 'Modifiez la date de début pour voir plus d\'options.',
|
||||
'mandatory_fields_for_tranaction' => 'Les valeurs ci-dessous seront enregistrées dans les opérations créées',
|
||||
'click_for_calendar' => 'Cliquez ici pour voir les répétitions des opérations sur un calendrier.',
|
||||
'repeat_forever' => 'Répéter pour toujours',
|
||||
'repeat_until_date' => 'Répéter jusqu\'à une date',
|
||||
'repeat_times' => 'Répéter un nombre de fois',
|
||||
'recurring_skips_one' => 'Tous les',
|
||||
'recurring_skips_more' => 'Passer :count répétitions',
|
||||
'store_new_recurrence' => 'Enregistrer l\'opération périodique',
|
||||
'stored_new_recurrence' => 'Opération périodique ":title" enregistrée avec succès.',
|
||||
'edit_recurrence' => 'Modifier l\'opération périodique ":title"',
|
||||
'recurring_repeats_until' => 'Se répète jusqu\'à :date',
|
||||
'recurring_repeats_forever' => 'Se répète pour toujours',
|
||||
'recurring_repeats_x_times' => 'Se répète :count fois',
|
||||
'update_recurrence' => 'Mettre à jour l\'opération périodique',
|
||||
'updated_recurrence' => 'Opération périodique ":title" mise à jour',
|
||||
'recurrence_is_inactive' => 'Cette opération périodique n’est pas active et ne génère pas de nouvelles opérations.',
|
||||
'delete_recurring' => 'Supprimer l\'opération périodique ":title"',
|
||||
'new_recurring_transaction' => 'Nouvelle opération périodique',
|
||||
'help_weekend' => 'Que doit faire Firefly III lorsque l’opération périodique tombe un samedi ou un dimanche ?',
|
||||
'do_nothing' => 'Créer l\'opération tout de même',
|
||||
'skip_transaction' => 'Ignorer l’occurrence',
|
||||
'jump_to_friday' => 'Créer l\'opération le vendredi précédent',
|
||||
'jump_to_monday' => 'Créer l\'opération le lundi suivant',
|
||||
'will_jump_friday' => 'Sera créé le vendredi plutôt que les week-ends.',
|
||||
'will_jump_monday' => 'Sera créé le lundi plutôt que les week-ends.',
|
||||
'except_weekends' => 'Sauf les week-ends',
|
||||
'recurrence_deleted' => 'Opération périodique ":title" supprimée',
|
||||
];
|
||||
|
@@ -43,13 +43,13 @@ return [
|
||||
'external_ip' => 'L\'adresse IP externe de votre serveur',
|
||||
'attachments' => 'Documents joints',
|
||||
'journal_amount' => 'Montant',
|
||||
'journal_source_name' => 'Revenue account (source)',
|
||||
'journal_source_id' => 'Asset account (source)',
|
||||
'journal_source_name' => 'Compte de recettes (source)',
|
||||
'journal_source_id' => 'Compte d’actif (source)',
|
||||
'BIC' => 'Code BIC',
|
||||
'verify_password' => 'Vérifiez la sécurité du mot de passe',
|
||||
'source_account' => 'Compte d\'origine',
|
||||
'destination_account' => 'Compte destinataire',
|
||||
'journal_destination_id' => 'Asset account (destination)',
|
||||
'journal_destination_id' => 'Compte d’actif (destination)',
|
||||
'asset_destination_account' => 'Compte d’actif (destination)',
|
||||
'asset_source_account' => 'Compte d’actif (source)',
|
||||
'journal_description' => 'Description',
|
||||
@@ -150,7 +150,7 @@ return [
|
||||
'delete_rule_group' => 'Supprimer le groupe de filtres ":title"',
|
||||
'delete_link_type' => 'Supprimer le type de lien ":name"',
|
||||
'delete_user' => 'Supprimer l\'utilisateur ":email"',
|
||||
'delete_recurring' => 'Delete recurring transaction ":title"',
|
||||
'delete_recurring' => 'Supprimer l\'opération périodique ":title"',
|
||||
'user_areYouSure' => 'Si vous supprimez l\'utilisateur ":email", tout disparaitra. Il n\'y a pas d\'annulation, de "dé-suppression" ou quoi que ce soit de la sorte. Si vous supprimez votre propre compte, vous n\'aurez plus accès à cette instance de Firefly III.',
|
||||
'attachment_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la pièce jointe nommée ":name" ?',
|
||||
'account_areYouSure' => 'Êtes-vous sûr de vouloir supprimer le compte nommé ":name" ?',
|
||||
@@ -159,7 +159,7 @@ return [
|
||||
'ruleGroup_areYouSure' => 'Êtes-vous sûr de vouloir supprimer le groupe de règles intitulé ":title" ?',
|
||||
'budget_areYouSure' => 'Êtes-vous sûr de vouloir supprimer le budget nommé ":name" ?',
|
||||
'category_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la catégorie nommée ":name" ?',
|
||||
'recurring_areYouSure' => 'Are you sure you want to delete the recurring transaction titled ":title"?',
|
||||
'recurring_areYouSure' => 'Êtes-vous sûr de vouloir supprimer l\'opération périodique intitulée ":title" ?',
|
||||
'currency_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la devise nommée ":name" ?',
|
||||
'piggyBank_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la tirelire nommée ":name" ?',
|
||||
'journal_areYouSure' => 'Êtes-vous sûr de vouloir supprimer la description de l\'opération ":description" ?',
|
||||
@@ -175,11 +175,11 @@ return [
|
||||
'also_delete_connections' => 'La seule transaction liée à ce type de lien perdra cette connexion. | Toutes les transactions :count liées à ce type de lien perdront leur connexion.',
|
||||
'also_delete_rules' => 'La seule règle liée à ce groupe de règles sera aussi supprimée.|Les :count règles liées à ce groupe de règles seront aussi supprimées.',
|
||||
'also_delete_piggyBanks' => 'La seule tirelire liée à ce compte sera aussi supprimée.|Les :count tirelires liées à ce compte seront aussi supprimées.',
|
||||
'bill_keep_transactions' => 'The only transaction connected to this bill will not be deleted.|All :count transactions connected to this bill will be spared deletion.',
|
||||
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will be spared deletion.',
|
||||
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will be spared deletion.',
|
||||
'recurring_keep_transactions' => 'The only transaction created by this recurring transaction will not be deleted.|All :count transactions created by this recurring transaction will be spared deletion.',
|
||||
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will be spared deletion.',
|
||||
'bill_keep_transactions' => 'La seule opération liée à cette facture ne sera pas supprimée.|Les :count opérations liées à cette facture ne seront pas supprimées.',
|
||||
'budget_keep_transactions' => 'La seule opération liée à ce budget ne sera pas supprimée.|Les :count opérations liées à ce budget ne seront pas supprimées.',
|
||||
'category_keep_transactions' => 'La seule opération liée à cette catégorie ne sera pas supprimée.|Les :count opérations liées à cette catégorie ne seront pas supprimées.',
|
||||
'recurring_keep_transactions' => 'La seule opération liée à cette opération périodique ne sera pas supprimée.|Les :count opérations liées à cette opération périodique ne seront pas supprimées.',
|
||||
'tag_keep_transactions' => 'La seule opération liée à ce tag ne sera pas supprimée.|Les :count opérations liées à ce tag ne seront pas supprimées.',
|
||||
'check_for_updates' => 'Vérifier les mises à jour',
|
||||
|
||||
'email' => 'Adresse Email',
|
||||
@@ -226,16 +226,16 @@ return [
|
||||
'inward' => 'Description vers l’intérieur',
|
||||
'outward' => 'Description de l’extérieur',
|
||||
'rule_group_id' => 'Groupe de règles',
|
||||
'transaction_description' => 'Transaction description',
|
||||
'first_date' => 'First date',
|
||||
'transaction_type' => 'Transaction type',
|
||||
'repeat_until' => 'Repeat until',
|
||||
'recurring_description' => 'Recurring transaction description',
|
||||
'repetition_type' => 'Type of repetition',
|
||||
'foreign_currency_id' => 'Foreign currency',
|
||||
'repetition_end' => 'Repetition ends',
|
||||
'repetitions' => 'Repetitions',
|
||||
'calendar' => 'Calendar',
|
||||
'weekend' => 'Weekend',
|
||||
'transaction_description' => 'Description de la transaction',
|
||||
'first_date' => 'Date de début',
|
||||
'transaction_type' => 'Type de transaction',
|
||||
'repeat_until' => 'Répéter jusqu\'à',
|
||||
'recurring_description' => 'Description de l\'opération périodique',
|
||||
'repetition_type' => 'Type de répétition',
|
||||
'foreign_currency_id' => 'Devise étrangère',
|
||||
'repetition_end' => 'Fin de répétition',
|
||||
'repetitions' => 'Répétitions',
|
||||
'calendar' => 'Calendrier',
|
||||
'weekend' => 'Week-end',
|
||||
|
||||
];
|
||||
|
@@ -51,25 +51,25 @@ return [
|
||||
'need_prereq_intro' => 'Certaines méthodes d\'importation nécessitent votre attention avant de pouvoir être utilisées. Par exemple, elles peuvent nécessiter des clés d\'API spéciales ou des clés secrètes. Vous pouvez les configurer ici. L\'icône indique si ces conditions préalables ont été remplies.',
|
||||
'do_prereq_fake' => 'Prérequis pour la simulation',
|
||||
'do_prereq_file' => 'Prérequis pour les importations de fichiers',
|
||||
'do_prereq_bunq' => 'Prerequisites for imports from bunq',
|
||||
'do_prereq_spectre' => 'Prerequisites for imports using Spectre',
|
||||
'do_prereq_plaid' => 'Prerequisites for imports using Plaid',
|
||||
'do_prereq_yodlee' => 'Prerequisites for imports using Yodlee',
|
||||
'do_prereq_quovo' => 'Prerequisites for imports using Quovo',
|
||||
'do_prereq_bunq' => 'Prérequis pour les importations depuis Bunq',
|
||||
'do_prereq_spectre' => 'Prérequis pour les importations depuis Spectre',
|
||||
'do_prereq_plaid' => 'Prérequis pour les importations depuis Plaid',
|
||||
'do_prereq_yodlee' => 'Prérequis pour les importations depuis Yodlee',
|
||||
'do_prereq_quovo' => 'Prérequis pour les importations depuis Quovo',
|
||||
// provider config box (index)
|
||||
'can_config_title' => 'Import configuration',
|
||||
'can_config_intro' => 'Some import methods can be configured to your liking. They have extra settings you can tweak.',
|
||||
'do_config_fake' => 'Configuration for the fake provider',
|
||||
'do_config_file' => 'Configuration for file imports',
|
||||
'do_config_bunq' => 'Configuration for bunq imports',
|
||||
'do_config_spectre' => 'Configuration for imports from Spectre',
|
||||
'do_config_plaid' => 'Configuration for imports from Plaid',
|
||||
'do_config_yodlee' => 'Configuration for imports from Yodlee',
|
||||
'do_config_quovo' => 'Configuration for imports from Quovo',
|
||||
'can_config_title' => 'Configuration d\'importation',
|
||||
'can_config_intro' => 'Certaines méthodes d’importation peuvent être configurées selon vos préférences. Elles ont des paramètres supplémentaires que vous pouvez modifier.',
|
||||
'do_config_fake' => 'Configuration du simulateur d\'importation',
|
||||
'do_config_file' => 'Configuration pour l’importation de fichier',
|
||||
'do_config_bunq' => 'Configuration pour les importations depuis Bunq',
|
||||
'do_config_spectre' => 'Configuration pour les importations depuis Spectre',
|
||||
'do_config_plaid' => 'Configuration pour les importations depuis Plaid',
|
||||
'do_config_yodlee' => 'Configuration pour les importations depuis Yodlee',
|
||||
'do_config_quovo' => 'Configuration pour les importations depuis Quovo',
|
||||
|
||||
// prerequisites:
|
||||
'prereq_fake_title' => 'Prerequisites for an import from the fake import provider',
|
||||
'prereq_fake_text' => 'This fake provider requires a fake API key. It must be 32 characters long. You can use this one: 123456789012345678901234567890AA',
|
||||
'prereq_fake_title' => 'Prérequis pour une importation utilisant le simulateur d\'importation',
|
||||
'prereq_fake_text' => 'Le simulateur d\'importation nécessite une fausse clé d\'API. Vous pouvez utiliser la clé suivante : 123456789012345678901234567890AA',
|
||||
'prereq_spectre_title' => 'Prerequisites for an import using the Spectre API',
|
||||
'prereq_spectre_text' => 'In order to import data using the Spectre API (v4), you must provide Firefly III with two secret values. They can be found on the <a href="https://www.saltedge.com/clients/profile/secrets">secrets page</a>.',
|
||||
'prereq_spectre_pub' => 'Likewise, the Spectre API needs to know the public key you see below. Without it, it will not recognize you. Please enter this public key on your <a href="https://www.saltedge.com/clients/profile/secrets">secrets page</a>.',
|
||||
@@ -243,11 +243,11 @@ return [
|
||||
'column_date-payment' => 'Date de paiement de la transaction',
|
||||
'column_date-invoice' => 'Date de facturation de la transaction',
|
||||
'column_description' => 'Description',
|
||||
'column_opposing-iban' => 'Compte destinataire (IBAN)',
|
||||
'column_opposing-bic' => 'Compte destinataire (BIC)',
|
||||
'column_opposing-id' => 'Compte destinataire (ID correspondant à FF3)',
|
||||
'column_opposing-iban' => 'Compte opposé (IBAN)',
|
||||
'column_opposing-bic' => 'Compte opposé (BIC)',
|
||||
'column_opposing-id' => 'Compte opposé (ID correspondant à FF3)',
|
||||
'column_external-id' => 'ID externe',
|
||||
'column_opposing-name' => 'Compte destinataire (nom)',
|
||||
'column_opposing-name' => 'Compte opposé (nom)',
|
||||
'column_rabo-debit-credit' => 'Indicateur de débit/crédit spécifique à Rabobank',
|
||||
'column_ing-debit-credit' => 'Indicateur de débit/crédit spécifique à ING',
|
||||
'column_sepa-ct-id' => 'Référence de bout en bout SEPA',
|
||||
|
@@ -123,9 +123,9 @@ return [
|
||||
'spectre_last_use' => 'Dernière connexion',
|
||||
'spectre_status' => 'Statut',
|
||||
'bunq_payment_id' => 'ID de paiement bunq',
|
||||
'repetitions' => 'Repetitions',
|
||||
'title' => 'Title',
|
||||
'transaction_s' => 'Transaction(s)',
|
||||
'field' => 'Field',
|
||||
'value' => 'Value',
|
||||
'repetitions' => 'Répétitions',
|
||||
'title' => 'Titre',
|
||||
'transaction_s' => 'Opération(s)',
|
||||
'field' => 'Champ',
|
||||
'value' => 'Valeur',
|
||||
];
|
||||
|
@@ -24,7 +24,7 @@ declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'iban' => 'Il ne s\'agit pas d\'un IBAN valide.',
|
||||
'source_equals_destination' => 'The source account equals the destination account.',
|
||||
'source_equals_destination' => 'Le compte source est égal au compte de destination.',
|
||||
'unique_account_number_for_user' => 'Il semble que ce numéro de compte est déjà utilisé.',
|
||||
'unique_iban_for_user' => 'Il semble que cet IBAN soit déjà utilisé.',
|
||||
'deleted_user' => 'Compte tenu des contraintes de sécurité, vous ne pouvez pas vous inscrire en utilisant cette adresse e-mail.',
|
||||
@@ -34,22 +34,22 @@ return [
|
||||
'file_attached' => 'Envoi du fichier ":name" avec succès.',
|
||||
'must_exist' => 'L\'ID dans le champ :attribute n\'existe pas dans la base de données.',
|
||||
'all_accounts_equal' => 'Tous les comptes dans ce champ doivent être égaux.',
|
||||
'invalid_selection' => 'Your selection is invalid.',
|
||||
'invalid_selection' => 'Votre sélection est invalide.',
|
||||
'belongs_user' => 'Cette valeur n\'est pas valide pour ce champ.',
|
||||
'at_least_one_transaction' => 'Besoin d\'au moins une transaction.',
|
||||
'at_least_one_repetition' => 'Need at least one repetition.',
|
||||
'require_repeat_until' => 'Require either a number of repetitions, or an end date (repeat_until). Not both.',
|
||||
'at_least_one_repetition' => 'Besoin d\'au moins une répétition.',
|
||||
'require_repeat_until' => 'Besoin d’un certain nombre de répétitions ou d\'une date de fin (repeat_until). Pas les deux.',
|
||||
'require_currency_info' => 'Le contenu de ce champ n\'est pas valide sans informations sur la devise.',
|
||||
'equal_description' => 'La description de la transaction ne doit pas être égale à la description globale.',
|
||||
'file_invalid_mime' => 'Le fichier ":name" est du type ":mime" ce qui n\'est pas accepté pour un nouvel envoi.',
|
||||
'file_too_large' => 'Le fichier ":name" est trop grand.',
|
||||
'belongs_to_user' => 'The value of :attribute is unknown.',
|
||||
'belongs_to_user' => 'La valeur de :attribute est inconnue.',
|
||||
'accepted' => 'Le champ :attribute doit être accepté.',
|
||||
'bic' => 'Ce n’est pas un code BIC valide.',
|
||||
'at_least_one_trigger' => 'Rule must have at least one trigger.',
|
||||
'at_least_one_action' => 'Rule must have at least one action.',
|
||||
'base64' => 'This is not valid base64 encoded data.',
|
||||
'model_id_invalid' => 'The given ID seems invalid for this model.',
|
||||
'at_least_one_trigger' => 'Une règle doit avoir au moins un déclencheur.',
|
||||
'at_least_one_action' => 'Une règle doit avoir au moins une action.',
|
||||
'base64' => 'Il ne s\'agit pas de données base64 valides.',
|
||||
'model_id_invalid' => 'L’ID fournit ne semble pas valide pour ce modèle.',
|
||||
'more' => ':attribute doit être supérieur à zéro.',
|
||||
'active_url' => 'Le champ :attribute n\'est pas une URL valide.',
|
||||
'after' => 'Le champ :attribute doit être une date postérieure à :date.',
|
||||
@@ -59,8 +59,8 @@ return [
|
||||
'array' => 'Le champ :attribute doit être un tableau.',
|
||||
'unique_for_user' => 'Il existe déjà une entrée avec ceci :attribute.',
|
||||
'before' => 'Le champ :attribute doit être une date antérieure à :date.',
|
||||
'unique_object_for_user' => 'This name is already in use.',
|
||||
'unique_account_for_user' => 'This account name is already in use.',
|
||||
'unique_object_for_user' => 'Ce nom est déjà utilisé.',
|
||||
'unique_account_for_user' => 'Ce nom de compte est déjà utilisé.',
|
||||
'between.numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
|
||||
'between.file' => 'Le fichier :attribute doit avoir une taille entre :min et :max kilo-octets.',
|
||||
'between.string' => 'Le texte :attribute doit avoir entre :min et :max caractères.',
|
||||
@@ -91,9 +91,9 @@ return [
|
||||
'min.array' => 'Le tableau :attribute doit avoir au moins :min éléments.',
|
||||
'not_in' => 'Le champ :attribute sélectionné n\'est pas valide.',
|
||||
'numeric' => 'Le champ :attribute doit contenir un nombre.',
|
||||
'numeric_native' => 'The native amount must be a number.',
|
||||
'numeric_destination' => 'The destination amount must be a number.',
|
||||
'numeric_source' => 'The source amount must be a number.',
|
||||
'numeric_native' => 'Le montant natif doit être un nombre.',
|
||||
'numeric_destination' => 'Le montant de destination doit être un nombre.',
|
||||
'numeric_source' => 'Le montant source doit être un nombre.',
|
||||
'regex' => 'Le format du champ :attribute est invalide.',
|
||||
'required' => 'Le champ :attribute est obligatoire.',
|
||||
'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.',
|
||||
@@ -118,12 +118,12 @@ return [
|
||||
'file' => 'Le :attribute doit être un fichier.',
|
||||
'in_array' => 'Le champ :attribute n\'existe pas dans :other.',
|
||||
'present' => 'Le champs :attribute doit être rempli.',
|
||||
'amount_zero' => 'The total amount cannot be zero.',
|
||||
'amount_zero' => 'Le montant total ne peut pas être zéro.',
|
||||
'unique_piggy_bank_for_user' => 'Le nom de la tirelire doit être unique.',
|
||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit http://bit.ly/FF3-password-security.',
|
||||
'valid_recurrence_rep_type' => 'Invalid repetition type for recurring transactions.',
|
||||
'valid_recurrence_rep_moment' => 'Invalid repetition moment for this type of repetition.',
|
||||
'invalid_account_info' => 'Invalid account information.',
|
||||
'secure_password' => 'Ce n’est pas un mot de passe sécurisé. Veuillez essayer à nouveau. Pour plus d’informations, visitez http://bit.ly/FF3-password-security.',
|
||||
'valid_recurrence_rep_type' => 'Type de répétition non valide pour des opérations périodiques.',
|
||||
'valid_recurrence_rep_moment' => 'Période de répétition non valide pour ce type de répétition.',
|
||||
'invalid_account_info' => 'Informations de compte non valides.',
|
||||
'attributes' => [
|
||||
'email' => 'adresse email',
|
||||
'description' => 'description',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Tidak dapat menghapus :name karena masih digunakan.',
|
||||
'deleted_currency' => 'Mata uang :name dihapus',
|
||||
'created_currency' => 'Mata uang :name dibuat',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Mata uang :name diperbarui',
|
||||
'ask_site_owner' => 'Harap bertanya :owner untuk menambahkan, menghapus atau mengedit mata uang.',
|
||||
'currencies_intro' => 'Firefly III mendukung berbagai mata uang yang dapat Anda atur dan aktifkan di sini.',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Impossibile eliminare :name perché è ancora in uso.',
|
||||
'deleted_currency' => 'Valuta :name elimina',
|
||||
'created_currency' => 'Valuta :name creata',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Valuta :name aggiornata',
|
||||
'ask_site_owner' => 'Chiedi a :owner di aggiungere, rimuovere o modificare valute.',
|
||||
'currencies_intro' => 'Firefly III supporta varie valute che è possibile impostare e abilitare qui.',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Kan ":name" niet verwijderen, want deze is in gebruik.',
|
||||
'deleted_currency' => 'Valuta :name verwijderd',
|
||||
'created_currency' => 'Nieuwe valuta :name opgeslagen',
|
||||
'could_not_store_currency' => 'Kon nieuwe valuta niet opslaan.',
|
||||
'updated_currency' => 'Valuta :name bijgewerkt',
|
||||
'ask_site_owner' => 'Vraag :owner of deze valuta wilt toevoegen, verwijderen of wijzigen.',
|
||||
'currencies_intro' => 'Firefly III ondersteunt diverse valuta die je hier kan instellen en bewerken.',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Nie można usunąć waluty :name, ponieważ jest ona nadal używana.',
|
||||
'deleted_currency' => 'Waluta :name została usunięta',
|
||||
'created_currency' => 'Waluta :name została utworzona',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Waluta :name została zmodyfikowana',
|
||||
'ask_site_owner' => 'Poproś :owner aby dodał, usunął lub zmodyfikował waluty.',
|
||||
'currencies_intro' => 'Firefly III obsługuje różne waluty, które można ustawić i włączyć tutaj.',
|
||||
@@ -1157,7 +1158,7 @@ return [
|
||||
'cannot_convert_split_journal' => 'Nie można przekonwertować podzielonej transakcji',
|
||||
|
||||
// Import page (general strings only)
|
||||
'import_index_title' => 'Import transactions into Firefly III',
|
||||
'import_index_title' => 'Importuj transakcje do Firefly III',
|
||||
'import_data' => 'Importuj dane',
|
||||
'import_transactions' => 'Importuj transakcje',
|
||||
|
||||
@@ -1212,7 +1213,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Cykliczne transakcje',
|
||||
'no_recurring_title_default' => 'Let\'s create a recurring transaction!',
|
||||
'no_recurring_title_default' => 'Utwórzmy cykliczną transakcję!',
|
||||
'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.',
|
||||
'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.',
|
||||
'no_recurring_create_default' => 'Utwórz cykliczną transakcję',
|
||||
@@ -1248,29 +1249,29 @@ return [
|
||||
'change_date_other_options' => 'Change the "first date" to see more options.',
|
||||
'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created',
|
||||
'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.',
|
||||
'repeat_forever' => 'Repeat forever',
|
||||
'repeat_forever' => 'Powtarzaj bez końca',
|
||||
'repeat_until_date' => 'Powtarzaj aż do dnia',
|
||||
'repeat_times' => 'Powtarzaj określoną liczbę razy',
|
||||
'recurring_skips_one' => 'Every other',
|
||||
'recurring_skips_more' => 'Skips :count occurrences',
|
||||
'store_new_recurrence' => 'Store recurring transaction',
|
||||
'store_new_recurrence' => 'Zachowaj cykliczną transakcję',
|
||||
'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.',
|
||||
'edit_recurrence' => 'Edit recurring transaction ":title"',
|
||||
'recurring_repeats_until' => 'Repeats until :date',
|
||||
'recurring_repeats_forever' => 'Repeats forever',
|
||||
'recurring_repeats_x_times' => 'Repeats :count time(s)',
|
||||
'update_recurrence' => 'Update recurring transaction',
|
||||
'edit_recurrence' => 'Modyfikuj cykliczną transakcję ":title"',
|
||||
'recurring_repeats_until' => 'Powtarzaj aż do :date',
|
||||
'recurring_repeats_forever' => 'Powtarza się bez końca',
|
||||
'recurring_repeats_x_times' => 'Powtarzaj :count raz(y)',
|
||||
'update_recurrence' => 'Aktualizuj cykliczną transakcję',
|
||||
'updated_recurrence' => 'Updated recurring transaction ":title"',
|
||||
'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.',
|
||||
'delete_recurring' => 'Delete recurring transaction ":title"',
|
||||
'new_recurring_transaction' => 'New recurring transaction',
|
||||
'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?',
|
||||
'do_nothing' => 'Just create the transaction',
|
||||
'skip_transaction' => 'Skip the occurence',
|
||||
'new_recurring_transaction' => 'Nowa cykliczna transakcja',
|
||||
'help_weekend' => 'Co powinien zrobić Firefly III, jeśli cykliczna transakcja się nie powiedzie w Sobotę lub Niedzielę?',
|
||||
'do_nothing' => 'Po prostu utwórz transakcję',
|
||||
'skip_transaction' => 'Pomiń wystąpienie',
|
||||
'jump_to_friday' => 'Create the transaction on the previous Friday instead',
|
||||
'jump_to_monday' => 'Create the transaction on the next Monday instead',
|
||||
'will_jump_friday' => 'Will be created on Friday instead of the weekends.',
|
||||
'will_jump_monday' => 'Will be created on Monday instead of the weekends.',
|
||||
'except_weekends' => 'Except weekends',
|
||||
'recurrence_deleted' => 'Recurring transaction ":title" deleted',
|
||||
'except_weekends' => 'Pomiń weekendy',
|
||||
'recurrence_deleted' => 'Cykliczna transakcja ":title" została usunięta',
|
||||
];
|
||||
|
@@ -43,13 +43,13 @@ return [
|
||||
'external_ip' => 'Zewnętrzny adres IP Twojego serwera',
|
||||
'attachments' => 'Załączniki',
|
||||
'journal_amount' => 'Kwota',
|
||||
'journal_source_name' => 'Revenue account (source)',
|
||||
'journal_source_id' => 'Asset account (source)',
|
||||
'journal_source_name' => 'Konto przychodów (źródło)',
|
||||
'journal_source_id' => 'Konto aktywów (źródło)',
|
||||
'BIC' => 'BIC',
|
||||
'verify_password' => 'Sprawdź bezpieczeństwo hasła',
|
||||
'source_account' => 'Konto źródłowe',
|
||||
'destination_account' => 'Konto docelowe',
|
||||
'journal_destination_id' => 'Asset account (destination)',
|
||||
'journal_destination_id' => 'Konto aktywów (przeznaczenie)',
|
||||
'asset_destination_account' => 'Konto aktywów (przeznaczenie)',
|
||||
'asset_source_account' => 'Konto aktywów (źródło)',
|
||||
'journal_description' => 'Opis',
|
||||
@@ -150,7 +150,7 @@ return [
|
||||
'delete_rule_group' => 'Usuń grupę reguł ":title"',
|
||||
'delete_link_type' => 'Usuń typ łącza ":name"',
|
||||
'delete_user' => 'Usuń użytkownika ":email"',
|
||||
'delete_recurring' => 'Delete recurring transaction ":title"',
|
||||
'delete_recurring' => 'Usuń cykliczną transakcję ":title"',
|
||||
'user_areYouSure' => 'Jeśli usuniesz użytkownika ":email", wszystko zniknie. Nie ma cofania, przywracania ani czegokolwiek. Jeśli usuniesz siebie, stracisz dostęp do tej instalacji Firefly III.',
|
||||
'attachment_areYouSure' => 'Czy na pewno chcesz usunąć załącznik o nazwie ":name"?',
|
||||
'account_areYouSure' => 'Czy na pewno chcesz usunąć konto o nazwie ":name"?',
|
||||
|
@@ -33,7 +33,7 @@ return [
|
||||
'cannot_create_for_provider' => 'Firefly III cannot create a job for the ":provider"-provider.',
|
||||
|
||||
// index page:
|
||||
'general_index_title' => 'Import a file',
|
||||
'general_index_title' => 'Importuj plik',
|
||||
'general_index_intro' => 'Welcome to Firefly III\'s import routine. There are a few ways of importing data into Firefly III, displayed here as buttons.',
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Fake an import',
|
||||
@@ -97,8 +97,8 @@ return [
|
||||
'job_config_file_upload_text' => 'This routine will help you import files from your bank into Firefly III. ',
|
||||
'job_config_file_upload_help' => 'Select your file. Please make sure the file is UTF-8 encoded.',
|
||||
'job_config_file_upload_config_help' => 'If you have previously imported data into Firefly III, you may have a configuration file, which will pre-set configuration values for you. For some banks, other users have kindly provided their <a href="https://github.com/firefly-iii/import-configurations/wiki">configuration file</a>',
|
||||
'job_config_file_upload_type_help' => 'Select the type of file you will upload',
|
||||
'job_config_file_upload_submit' => 'Upload files',
|
||||
'job_config_file_upload_type_help' => 'Wybierz typ pliku, który będziesz przesyłać',
|
||||
'job_config_file_upload_submit' => 'Prześlij pliki',
|
||||
'import_file_type_csv' => 'CSV (wartości oddzielone przecinkami)',
|
||||
'file_not_utf8' => 'The file you have uploaded is not encoded as UTF-8 or ASCII. Firefly III cannot handle such files. Please use Notepad++ or Sublime to convert your file to UTF-8.',
|
||||
'job_config_uc_title' => 'Import setup (2/4) - Basic file setup',
|
||||
@@ -127,7 +127,7 @@ return [
|
||||
'spectre_no_mapping' => 'Wygląda na to, że nie wybrałeś żadnych kont z których można zaimportować dane.',
|
||||
'imported_from_account' => 'Zaimportowane z ":account"',
|
||||
'spectre_account_with_number' => ':number konta',
|
||||
'job_config_spectre_apply_rules' => 'Apply rules',
|
||||
'job_config_spectre_apply_rules' => 'Zastosuj reguły',
|
||||
'job_config_spectre_apply_rules_text' => 'By default, your rules will be applied to the transactions created during this import routine. If you do not want this to happen, deselect this checkbox.',
|
||||
// job configuration for bunq:
|
||||
'job_config_bunq_accounts_title' => 'konta bunq',
|
||||
@@ -135,7 +135,7 @@ return [
|
||||
'bunq_no_mapping' => 'It seems you have not selected any accounts.',
|
||||
'should_download_config' => 'You should download <a href=":route">the configuration file</a> for this job. This will make future imports way easier.',
|
||||
'share_config_file' => 'If you have imported data from a public bank, you should <a href="https://github.com/firefly-iii/import-configurations/wiki">share your configuration file</a> so it will be easy for other users to import their data. Sharing your configuration file will not expose your financial details.',
|
||||
'job_config_bunq_apply_rules' => 'Apply rules',
|
||||
'job_config_bunq_apply_rules' => 'Zastosuj reguły',
|
||||
'job_config_bunq_apply_rules_text' => 'By default, your rules will be applied to the transactions created during this import routine. If you do not want this to happen, deselect this checkbox.',
|
||||
// keys from "extra" array:
|
||||
'spectre_extra_key_iban' => 'IBAN',
|
||||
@@ -149,14 +149,14 @@ return [
|
||||
'spectre_extra_key_available_amount' => 'Dostępna kwota',
|
||||
'spectre_extra_key_credit_limit' => 'Limit kredytowy',
|
||||
'spectre_extra_key_interest_rate' => 'Oprocentowanie',
|
||||
'spectre_extra_key_expiry_date' => 'Expiry date',
|
||||
'spectre_extra_key_expiry_date' => 'Data wygaśnięcia',
|
||||
'spectre_extra_key_open_date' => 'Data otwarcia',
|
||||
'spectre_extra_key_current_time' => 'Aktualny czas',
|
||||
'spectre_extra_key_current_date' => 'Current date',
|
||||
'spectre_extra_key_cards' => 'Cards',
|
||||
'spectre_extra_key_units' => 'Units',
|
||||
'spectre_extra_key_unit_price' => 'Unit price',
|
||||
'spectre_extra_key_transactions_count' => 'Transaction count',
|
||||
'spectre_extra_key_current_date' => 'Aktualna data',
|
||||
'spectre_extra_key_cards' => 'Karty',
|
||||
'spectre_extra_key_units' => 'Jednostki',
|
||||
'spectre_extra_key_unit_price' => 'Cena jednostkowa',
|
||||
'spectre_extra_key_transactions_count' => 'Liczba transakcji',
|
||||
|
||||
// specifics:
|
||||
'specific_ing_name' => 'ING NL',
|
||||
@@ -196,16 +196,16 @@ return [
|
||||
'status_wait_title' => 'Proszę czekać...',
|
||||
'status_wait_text' => 'To pole za chwilę zniknie.',
|
||||
'status_running_title' => 'Trwa importowanie',
|
||||
'status_job_running' => 'Please wait, running the import...',
|
||||
'status_job_storing' => 'Please wait, storing data...',
|
||||
'status_job_rules' => 'Please wait, running rules...',
|
||||
'status_job_running' => 'Proszę czekać, trwa importowanie danych...',
|
||||
'status_job_storing' => 'Proszę czekać, zapisuję dane...',
|
||||
'status_job_rules' => 'Proszę czekać, trwa procesowanie reguł...',
|
||||
'status_fatal_title' => 'Błąd krytyczny',
|
||||
'status_fatal_text' => 'The import has suffered from an error it could not recover from. Apologies!',
|
||||
'status_fatal_more' => 'This (possibly very cryptic) error message is complemented by log files, which you can find on your hard drive, or in the Docker container where you run Firefly III from.',
|
||||
'status_finished_title' => 'Import zakończony',
|
||||
'status_finished_text' => 'Importowanie zostało zakończone.',
|
||||
'finished_with_errors' => 'There were some errors during the import. Please review them carefully.',
|
||||
'unknown_import_result' => 'Unknown import result',
|
||||
'unknown_import_result' => 'Nieznany wynik importu',
|
||||
'result_no_transactions' => 'No transactions have been imported. Perhaps they were all duplicates is simply no transactions where present to be imported. Perhaps the log files can tell you what happened. If you import data regularly, this is normal.',
|
||||
'result_one_transaction' => 'Exactly one transaction has been imported. It is stored under tag <a href=":route" class="label label-success" style="font-size:100%;font-weight:normal;">:tag</a> where you can inspect it further.',
|
||||
'result_many_transactions' => 'Firefly III has imported :count transactions. They are stored under tag <a href=":route" class="label label-success" style="font-size:100%;font-weight:normal;">:tag</a> where you can inspect them further.',
|
||||
@@ -244,7 +244,7 @@ return [
|
||||
'column_date-invoice' => 'Transaction invoice date',
|
||||
'column_description' => 'Opis',
|
||||
'column_opposing-iban' => 'Przeciwstawne konto (IBAN)',
|
||||
'column_opposing-bic' => 'Opposing account (BIC)',
|
||||
'column_opposing-bic' => 'Przeciwstawne konto (BIC)',
|
||||
'column_opposing-id' => 'ID przeciwstawnego konta (z bazy FF3)',
|
||||
'column_external-id' => 'Zewnętrzne ID',
|
||||
'column_opposing-name' => 'Przeciwstawne konto (nazwa)',
|
||||
|
@@ -34,10 +34,10 @@ return [
|
||||
'file_attached' => 'Pomyślnie wgrano plik ":name".',
|
||||
'must_exist' => 'Identyfikator w polu :attribute nie istnieje w bazie danych.',
|
||||
'all_accounts_equal' => 'Wszystkie konta w tym polu muszą być takie same.',
|
||||
'invalid_selection' => 'Your selection is invalid.',
|
||||
'invalid_selection' => 'Twój wybór jest nieprawidłowy.',
|
||||
'belongs_user' => 'Ta wartość jest nieprawidłowa dla tego pola.',
|
||||
'at_least_one_transaction' => 'Wymaga co najmniej jednej transakcji.',
|
||||
'at_least_one_repetition' => 'Need at least one repetition.',
|
||||
'at_least_one_repetition' => 'Wymaga co najmniej jednego powtórzenia.',
|
||||
'require_repeat_until' => 'Require either a number of repetitions, or an end date (repeat_until). Not both.',
|
||||
'require_currency_info' => 'Treść tego pola jest nieprawidłowa bez informacji o walucie.',
|
||||
'equal_description' => 'Opis transakcji nie powinien być równy globalnemu opisowi.',
|
||||
@@ -46,9 +46,9 @@ return [
|
||||
'belongs_to_user' => 'The value of :attribute is unknown.',
|
||||
'accepted' => ':attribute musi zostać zaakceptowany.',
|
||||
'bic' => 'To nie jest prawidłowy BIC.',
|
||||
'at_least_one_trigger' => 'Rule must have at least one trigger.',
|
||||
'at_least_one_action' => 'Rule must have at least one action.',
|
||||
'base64' => 'This is not valid base64 encoded data.',
|
||||
'at_least_one_trigger' => 'Reguła powinna mieć co najmniej jeden wyzwalacz.',
|
||||
'at_least_one_action' => 'Reguła powinna mieć co najmniej jedną akcję.',
|
||||
'base64' => 'To nie są prawidłowe dane zakodowane w base64.',
|
||||
'model_id_invalid' => 'The given ID seems invalid for this model.',
|
||||
'more' => ':attribute musi być większy od zera.',
|
||||
'active_url' => ':attribute nie jest prawidłowym adresem URL.',
|
||||
@@ -59,8 +59,8 @@ return [
|
||||
'array' => ':attribute musi być tablicą.',
|
||||
'unique_for_user' => 'Istnieje już wpis z tym :attribute.',
|
||||
'before' => ':attribute musi być wcześniejszą datą w stosunku do :date.',
|
||||
'unique_object_for_user' => 'This name is already in use.',
|
||||
'unique_account_for_user' => 'This account name is already in use.',
|
||||
'unique_object_for_user' => 'Ta nazwa jest już w użyciu.',
|
||||
'unique_account_for_user' => 'Ta nazwa konta jest już w użyciu.',
|
||||
'between.numeric' => ':attribute musi się mieścić w zakresie pomiędzy :min a :max.',
|
||||
'between.file' => ':attribute musi się mieścić w zakresie pomiędzy :min oraz :max kilobajtów.',
|
||||
'between.string' => ':attribute musi zawierać pomiędzy :min a :max znaków.',
|
||||
@@ -92,8 +92,8 @@ return [
|
||||
'not_in' => 'Wybrany :attribute jest nieprawidłowy.',
|
||||
'numeric' => ':attribute musi byc liczbą.',
|
||||
'numeric_native' => 'The native amount must be a number.',
|
||||
'numeric_destination' => 'The destination amount must be a number.',
|
||||
'numeric_source' => 'The source amount must be a number.',
|
||||
'numeric_destination' => 'Kwota docelowa musi być liczbą.',
|
||||
'numeric_source' => 'Kwota źródłowa musi być liczbą.',
|
||||
'regex' => 'Format :attribute jest nieprawidłowy.',
|
||||
'required' => 'Pole :attribute jest wymagane.',
|
||||
'required_if' => 'Pole :attribute jest wymagane gdy :other jest :value.',
|
||||
@@ -118,12 +118,12 @@ return [
|
||||
'file' => ':attribute musi być plikiem.',
|
||||
'in_array' => 'Pole :attribute nie istnieje w :other.',
|
||||
'present' => 'Pole :attribute musi być obecne.',
|
||||
'amount_zero' => 'The total amount cannot be zero.',
|
||||
'unique_piggy_bank_for_user' => 'The name of the piggy bank must be unique.',
|
||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit http://bit.ly/FF3-password-security.',
|
||||
'amount_zero' => 'Całkowita kwota nie może wynosić zero.',
|
||||
'unique_piggy_bank_for_user' => 'Nazwa skarbonki musi być unikalna.',
|
||||
'secure_password' => 'To nie jest bezpieczne hasło. Proszę spróbować ponownie. Aby uzyskać więcej informacji odwiedź http://bit.ly/FF3-password-security.',
|
||||
'valid_recurrence_rep_type' => 'Invalid repetition type for recurring transactions.',
|
||||
'valid_recurrence_rep_moment' => 'Invalid repetition moment for this type of repetition.',
|
||||
'invalid_account_info' => 'Invalid account information.',
|
||||
'invalid_account_info' => 'Nieprawidłowe informacje o koncie.',
|
||||
'attributes' => [
|
||||
'email' => 'adres e-mail',
|
||||
'description' => 'opis',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Não é possível excluir :name porque ainda está em uso.',
|
||||
'deleted_currency' => 'Moeda :name excluída',
|
||||
'created_currency' => 'Moeda :name criada',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Moeda :name atualizada',
|
||||
'ask_site_owner' => 'Por favor, pergunte ao :owner para adicionar, remover ou editar moedas.',
|
||||
'currencies_intro' => 'Firefly III oferece suporte a várias moedas que você pode definir e ativar aqui.',
|
||||
|
@@ -607,6 +607,7 @@ return [
|
||||
'cannot_delete_currency' => 'Невозможно удалить валюту :name, поскольку она используется.',
|
||||
'deleted_currency' => 'Валюта :name удалена',
|
||||
'created_currency' => 'Валюта :name создана',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Валюта :name обновлена',
|
||||
'ask_site_owner' => 'Пожалуйста, обратитесь к :owner для добавления, удаления или изменения валюты.',
|
||||
'currencies_intro' => 'Firefly III может работать с несколькими валютами. Вы можете управлять ими здесь.',
|
||||
|
@@ -610,6 +610,7 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'cannot_delete_currency' => ':name hala kullanıldığı için silinemiyor.',
|
||||
'deleted_currency' => 'Para birimi :name silindi',
|
||||
'created_currency' => 'Para birimi :name oluşturuldu',
|
||||
'could_not_store_currency' => 'Could not store the new currency.',
|
||||
'updated_currency' => 'Para birimi :name güncellendi',
|
||||
'ask_site_owner' => 'Lütfen para birimleri eklemek, kaldırmak veya düzenlemek için :owner\'a danışın.',
|
||||
'currencies_intro' => 'Firefly III, burada ayarlayabileceğiniz ve etkinleştirebileceğiniz çeşitli para birimlerini destekliyor.',
|
||||
|
Reference in New Issue
Block a user