mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
New and updated files for beta 2
This commit is contained in:
parent
aab8eb467c
commit
c3a4656e22
@ -1,4 +1,6 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
/*
|
||||
* ShowController.php
|
||||
* Copyright (c) 2023 james@firefly-iii.org
|
||||
|
@ -278,7 +278,7 @@ class AccountRepository implements AccountRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -314,7 +314,7 @@ class AccountTasker implements AccountTaskerInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -157,7 +157,7 @@ class AttachmentRepository implements AttachmentRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -203,7 +203,7 @@ class BillRepository implements BillRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -225,7 +225,7 @@ class AvailableBudgetRepository implements AvailableBudgetRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -276,7 +276,7 @@ class BudgetLimitRepository implements BudgetLimitRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -149,7 +149,7 @@ class BudgetRepository implements BudgetRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -143,7 +143,7 @@ class NoBudgetRepository implements NoBudgetRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -205,7 +205,7 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -201,7 +201,7 @@ class CategoryRepository implements CategoryRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -95,7 +95,7 @@ class NoCategoryRepository implements NoCategoryRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -121,7 +121,7 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -492,7 +492,7 @@ class CurrencyRepository implements CurrencyRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -115,7 +115,7 @@ class JournalAPIRepository implements JournalAPIRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -257,7 +257,7 @@ class JournalRepository implements JournalRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -204,7 +204,7 @@ class LinkTypeRepository implements LinkTypeRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -279,7 +279,7 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -350,7 +350,7 @@ class RecurringRepository implements RecurringRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -366,7 +366,7 @@ class RuleRepository implements RuleRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -448,7 +448,7 @@ class RuleGroupRepository implements RuleGroupRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -122,7 +122,7 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -114,7 +114,7 @@ class TagRepository implements TagRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -194,7 +194,7 @@ class TransactionGroupRepository implements TransactionGroupRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ class WebhookRepository implements WebhookRepositoryInterface
|
||||
*/
|
||||
public function setUser(User|Authenticatable|null $user): void
|
||||
{
|
||||
if(null !== $user) {
|
||||
if (null !== $user) {
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
|
29
changelog.md
29
changelog.md
@ -18,9 +18,9 @@ This is release **6.0.0** of Firefly III.
|
||||
|
||||
### Added
|
||||
- Introduce Jetbrains Qodana code scanning for code quality.
|
||||
- Reintroduced PHPunit tests
|
||||
- Reintroduced PHPUnit tests
|
||||
- Added a warning for people using the "remote user guard" in combination with Personal Access Tokens.
|
||||
- Improved validation accross the board.
|
||||
- Improved validation across the board.
|
||||
- First code to validate a user's financial administration
|
||||
- Dark mode CSS
|
||||
- New language: Catalan
|
||||
@ -75,6 +75,31 @@ This is release **6.0.0** of Firefly III.
|
||||
- [Issue 6826](https://github.com/firefly-iii/firefly-iii/issues/6826) Hide 2FA information when printing, thanks @jstebenne!
|
||||
- Blocked users can access API, and users can unblock themselves using the API. This was reported in CVE-2023-0298.
|
||||
|
||||
## 6.0.0-beta.2 - 2023-02-20
|
||||
|
||||
### Warnings
|
||||
|
||||
- ⚠️ Make a backup of your database first!
|
||||
- ⚠️ This version requires **PHP 8.2**.
|
||||
|
||||
You can access the new V3 layout under `/v3/`. If you decide to use or test it:
|
||||
|
||||
- ⚠️ Read the instructions under the ☠️ icon FIRST.
|
||||
- ⚠️ The new layout is not yet finished. Use it to change your data at your own risk.
|
||||
|
||||
### Added
|
||||
- Add max upload to debug page.
|
||||
|
||||
### Fixed
|
||||
- Missing indexes in bill overview.
|
||||
- Various dark mode fixes
|
||||
|
||||
### Security
|
||||
- Bad escape in transaction currencies could cause XSS attacks.
|
||||
|
||||
### API
|
||||
- All v1 and v2 routes checked and documented properly.
|
||||
|
||||
## 6.0.0-beta.1 - 2023-02-12
|
||||
|
||||
### Warnings
|
||||
|
159
composer.lock
generated
159
composer.lock
generated
@ -306,30 +306,30 @@
|
||||
},
|
||||
{
|
||||
"name": "diglactic/laravel-breadcrumbs",
|
||||
"version": "v8.0.1",
|
||||
"version": "v8.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/diglactic/laravel-breadcrumbs.git",
|
||||
"reference": "b2c594e56fd15ef3112436e2067dca13131dd990"
|
||||
"reference": "ce3dfb760743c63a287dab4b8090d7bf68b321ee"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/diglactic/laravel-breadcrumbs/zipball/b2c594e56fd15ef3112436e2067dca13131dd990",
|
||||
"reference": "b2c594e56fd15ef3112436e2067dca13131dd990",
|
||||
"url": "https://api.github.com/repos/diglactic/laravel-breadcrumbs/zipball/ce3dfb760743c63a287dab4b8090d7bf68b321ee",
|
||||
"reference": "ce3dfb760743c63a287dab4b8090d7bf68b321ee",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"facade/ignition-contracts": "^1.0",
|
||||
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0",
|
||||
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
|
||||
"php": "^7.2 || ^8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"davejamesmiller/laravel-breadcrumbs": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": "^4.10 || ^5.9 || ^6.4 || ^7.0",
|
||||
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
|
||||
"php-coveralls/php-coveralls": "^2.4",
|
||||
"phpunit/phpunit": "^8.5 || ^9.4",
|
||||
"phpunit/phpunit": "^8.5 || ^9.5",
|
||||
"spatie/phpunit-snapshot-assertions": "^2.2 || ^4.2"
|
||||
},
|
||||
"type": "library",
|
||||
@ -371,9 +371,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/diglactic/laravel-breadcrumbs/issues",
|
||||
"source": "https://github.com/diglactic/laravel-breadcrumbs/tree/v8.0.1"
|
||||
"source": "https://github.com/diglactic/laravel-breadcrumbs/tree/v8.1.0"
|
||||
},
|
||||
"time": "2022-09-02T16:18:17+00:00"
|
||||
"time": "2023-02-06T22:46:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/cache",
|
||||
@ -1941,16 +1941,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
"version": "v9.51.0",
|
||||
"version": "v9.52.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/framework.git",
|
||||
"reference": "b81123134349a013a738a9f7f715c6ce99d5a414"
|
||||
"reference": "eb85cd9d72e5bfa54b4d0d9040786f26d6184a9e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/b81123134349a013a738a9f7f715c6ce99d5a414",
|
||||
"reference": "b81123134349a013a738a9f7f715c6ce99d5a414",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/eb85cd9d72e5bfa54b4d0d9040786f26d6184a9e",
|
||||
"reference": "eb85cd9d72e5bfa54b4d0d9040786f26d6184a9e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2135,20 +2135,20 @@
|
||||
"issues": "https://github.com/laravel/framework/issues",
|
||||
"source": "https://github.com/laravel/framework"
|
||||
},
|
||||
"time": "2023-02-07T15:37:18+00:00"
|
||||
"time": "2023-02-14T14:51:14+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/passport",
|
||||
"version": "v11.6.1",
|
||||
"version": "v11.8.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/passport.git",
|
||||
"reference": "d8cc34766635da552a9ddff80248c5505f19bd04"
|
||||
"reference": "2008d86244297a9fa291faf63f59d0949bddf91e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/passport/zipball/d8cc34766635da552a9ddff80248c5505f19bd04",
|
||||
"reference": "d8cc34766635da552a9ddff80248c5505f19bd04",
|
||||
"url": "https://api.github.com/repos/laravel/passport/zipball/2008d86244297a9fa291faf63f59d0949bddf91e",
|
||||
"reference": "2008d86244297a9fa291faf63f59d0949bddf91e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2212,7 +2212,7 @@
|
||||
"issues": "https://github.com/laravel/passport/issues",
|
||||
"source": "https://github.com/laravel/passport"
|
||||
},
|
||||
"time": "2023-02-03T15:45:23+00:00"
|
||||
"time": "2023-02-17T09:08:51+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/sanctum",
|
||||
@ -2402,16 +2402,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/ui",
|
||||
"version": "v4.2.0",
|
||||
"version": "v4.2.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/ui.git",
|
||||
"reference": "810adddcf4e2538b0d1ed470c3a5220ffe761370"
|
||||
"reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/ui/zipball/810adddcf4e2538b0d1ed470c3a5220ffe761370",
|
||||
"reference": "810adddcf4e2538b0d1ed470c3a5220ffe761370",
|
||||
"url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907",
|
||||
"reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2422,7 +2422,8 @@
|
||||
"php": "^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": "^7.0|^8.0"
|
||||
"orchestra/testbench": "^7.0|^8.0",
|
||||
"phpunit/phpunit": "^9.3"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
@ -2457,34 +2458,34 @@
|
||||
"ui"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/laravel/ui/tree/v4.2.0"
|
||||
"source": "https://github.com/laravel/ui/tree/v4.2.1"
|
||||
},
|
||||
"time": "2023-01-10T12:13:29+00:00"
|
||||
"time": "2023-02-17T09:17:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravelcollective/html",
|
||||
"version": "v6.3.0",
|
||||
"version": "v6.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/LaravelCollective/html.git",
|
||||
"reference": "78c3cb516ac9e6d3d76cad9191f81d217302dea6"
|
||||
"reference": "ac74f580459a5120079b8def0404e5d312a09504"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/78c3cb516ac9e6d3d76cad9191f81d217302dea6",
|
||||
"reference": "78c3cb516ac9e6d3d76cad9191f81d217302dea6",
|
||||
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/ac74f580459a5120079b8def0404e5d312a09504",
|
||||
"reference": "ac74f580459a5120079b8def0404e5d312a09504",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"illuminate/http": "^6.0|^7.0|^8.0|^9.0",
|
||||
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0",
|
||||
"illuminate/session": "^6.0|^7.0|^8.0|^9.0",
|
||||
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
|
||||
"illuminate/view": "^6.0|^7.0|^8.0|^9.0",
|
||||
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
||||
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
||||
"illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
||||
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
||||
"illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
||||
"php": ">=7.2.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"illuminate/database": "^6.0|^7.0|^8.0|^9.0",
|
||||
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
||||
"mockery/mockery": "~1.0",
|
||||
"phpunit/phpunit": "~8.5|^9.5.10"
|
||||
},
|
||||
@ -2531,7 +2532,7 @@
|
||||
"issues": "https://github.com/LaravelCollective/html/issues",
|
||||
"source": "https://github.com/LaravelCollective/html"
|
||||
},
|
||||
"time": "2022-02-08T21:02:54+00:00"
|
||||
"time": "2023-02-13T18:15:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "lcobucci/clock",
|
||||
@ -2673,16 +2674,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/commonmark",
|
||||
"version": "2.3.8",
|
||||
"version": "2.3.9",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/commonmark.git",
|
||||
"reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47"
|
||||
"reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c493585c130544c4e91d2e0e131e6d35cb0cbc47",
|
||||
"reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47",
|
||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
|
||||
"reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2775,7 +2776,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-12-10T16:02:17+00:00"
|
||||
"time": "2023-02-15T14:07:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/config",
|
||||
@ -2999,16 +3000,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
"version": "3.12.2",
|
||||
"version": "3.12.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/flysystem.git",
|
||||
"reference": "f6377c709d2275ed6feaf63e44be7a7162b0e77f"
|
||||
"reference": "81e87e74dd5213795c7846d65089712d2dda90ce"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f6377c709d2275ed6feaf63e44be7a7162b0e77f",
|
||||
"reference": "f6377c709d2275ed6feaf63e44be7a7162b0e77f",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/81e87e74dd5213795c7846d65089712d2dda90ce",
|
||||
"reference": "81e87e74dd5213795c7846d65089712d2dda90ce",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3070,7 +3071,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/thephpleague/flysystem/issues",
|
||||
"source": "https://github.com/thephpleague/flysystem/tree/3.12.2"
|
||||
"source": "https://github.com/thephpleague/flysystem/tree/3.12.3"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3086,7 +3087,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-01-19T12:02:19+00:00"
|
||||
"time": "2023-02-18T15:32:41+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/fractal",
|
||||
@ -3216,16 +3217,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/oauth2-server",
|
||||
"version": "8.3.6",
|
||||
"version": "8.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/oauth2-server.git",
|
||||
"reference": "28c5441716c10d0c936bd731860dc385d0f6d1a8"
|
||||
"reference": "539f4340c14eca8d44578fd118f6bdc0ad16d1ce"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/28c5441716c10d0c936bd731860dc385d0f6d1a8",
|
||||
"reference": "28c5441716c10d0c936bd731860dc385d0f6d1a8",
|
||||
"url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/539f4340c14eca8d44578fd118f6bdc0ad16d1ce",
|
||||
"reference": "539f4340c14eca8d44578fd118f6bdc0ad16d1ce",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3292,7 +3293,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/thephpleague/oauth2-server/issues",
|
||||
"source": "https://github.com/thephpleague/oauth2-server/tree/8.3.6"
|
||||
"source": "https://github.com/thephpleague/oauth2-server/tree/8.4.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3300,7 +3301,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2022-11-14T19:42:00+00:00"
|
||||
"time": "2023-02-15T16:08:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/uri",
|
||||
@ -3828,16 +3829,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/collision",
|
||||
"version": "v7.0.2",
|
||||
"version": "v7.0.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nunomaduro/collision.git",
|
||||
"reference": "15e5fe35305419c9c6cf196be8d62cf70087a20c"
|
||||
"reference": "fbf3c8a8ee08068bee7d81ee0cee5ddf032aaa84"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/15e5fe35305419c9c6cf196be8d62cf70087a20c",
|
||||
"reference": "15e5fe35305419c9c6cf196be8d62cf70087a20c",
|
||||
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/fbf3c8a8ee08068bee7d81ee0cee5ddf032aaa84",
|
||||
"reference": "fbf3c8a8ee08068bee7d81ee0cee5ddf032aaa84",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3848,8 +3849,8 @@
|
||||
},
|
||||
"require-dev": {
|
||||
"laravel/framework": "^10.0.0",
|
||||
"laravel/pint": "^1.4.1",
|
||||
"laravel/sail": "^1.20.1",
|
||||
"laravel/pint": "^1.5.0",
|
||||
"laravel/sail": "^1.20.2",
|
||||
"laravel/sanctum": "^3.2.1",
|
||||
"laravel/tinker": "^2.8.0",
|
||||
"nunomaduro/larastan": "^2.4.0",
|
||||
@ -3915,7 +3916,7 @@
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-11T18:10:08+00:00"
|
||||
"time": "2023-02-16T14:34:30+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/termwind",
|
||||
@ -8377,16 +8378,16 @@
|
||||
},
|
||||
{
|
||||
"name": "twig/twig",
|
||||
"version": "v3.5.0",
|
||||
"version": "v3.5.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/twigphp/Twig.git",
|
||||
"reference": "3ffcf4b7d890770466da3b2666f82ac054e7ec72"
|
||||
"reference": "a6e0510cc793912b451fd40ab983a1d28f611c15"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/twigphp/Twig/zipball/3ffcf4b7d890770466da3b2666f82ac054e7ec72",
|
||||
"reference": "3ffcf4b7d890770466da3b2666f82ac054e7ec72",
|
||||
"url": "https://api.github.com/repos/twigphp/Twig/zipball/a6e0510cc793912b451fd40ab983a1d28f611c15",
|
||||
"reference": "a6e0510cc793912b451fd40ab983a1d28f611c15",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -8437,7 +8438,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/twigphp/Twig/issues",
|
||||
"source": "https://github.com/twigphp/Twig/tree/v3.5.0"
|
||||
"source": "https://github.com/twigphp/Twig/tree/v3.5.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -8449,7 +8450,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-12-27T12:28:18+00:00"
|
||||
"time": "2023-02-08T07:49:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "vlucas/phpdotenv",
|
||||
@ -9415,16 +9416,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/larastan",
|
||||
"version": "2.4.0",
|
||||
"version": "2.4.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nunomaduro/larastan.git",
|
||||
"reference": "14f631348ead3e245651606931863b4f218d1f78"
|
||||
"reference": "238fdbfba3aae133cdec73e99826c9b0232141f7"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nunomaduro/larastan/zipball/14f631348ead3e245651606931863b4f218d1f78",
|
||||
"reference": "14f631348ead3e245651606931863b4f218d1f78",
|
||||
"url": "https://api.github.com/repos/nunomaduro/larastan/zipball/238fdbfba3aae133cdec73e99826c9b0232141f7",
|
||||
"reference": "238fdbfba3aae133cdec73e99826c9b0232141f7",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -9487,7 +9488,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/nunomaduro/larastan/issues",
|
||||
"source": "https://github.com/nunomaduro/larastan/tree/2.4.0"
|
||||
"source": "https://github.com/nunomaduro/larastan/tree/2.4.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -9507,7 +9508,7 @@
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2023-01-11T11:57:44+00:00"
|
||||
"time": "2023-02-05T12:19:17+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phar-io/manifest",
|
||||
@ -9817,16 +9818,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
"version": "1.9.17",
|
||||
"version": "1.9.18",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpstan/phpstan.git",
|
||||
"reference": "204e459e7822f2c586463029f5ecec31bb45a1f2"
|
||||
"reference": "f2d5cf71be91172a57c649770b73c20ebcffb0bf"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/204e459e7822f2c586463029f5ecec31bb45a1f2",
|
||||
"reference": "204e459e7822f2c586463029f5ecec31bb45a1f2",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/f2d5cf71be91172a57c649770b73c20ebcffb0bf",
|
||||
"reference": "f2d5cf71be91172a57c649770b73c20ebcffb0bf",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -9856,7 +9857,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/phpstan/phpstan/issues",
|
||||
"source": "https://github.com/phpstan/phpstan/tree/1.9.17"
|
||||
"source": "https://github.com/phpstan/phpstan/tree/1.9.18"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -9872,7 +9873,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-08T12:25:00+00:00"
|
||||
"time": "2023-02-17T15:01:27+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan-deprecation-rules",
|
||||
|
@ -106,8 +106,8 @@ return [
|
||||
'webhooks' => true,
|
||||
'handle_debts' => true,
|
||||
],
|
||||
'version' => '6.0.0-beta.1',
|
||||
'api_version' => '2.0.0-beta.1',
|
||||
'version' => '6.0.0-beta.2',
|
||||
'api_version' => '2.0.0-beta.2',
|
||||
'db_version' => 19,
|
||||
|
||||
// generic settings
|
||||
|
60
frontend/src/i18n/nb_NO/index.js
vendored
60
frontend/src/i18n/nb_NO/index.js
vendored
@ -27,7 +27,7 @@ export default {
|
||||
"name": "Navn",
|
||||
"amount_min": "Minimumsbel\u00f8p",
|
||||
"amount_max": "Maksimumsbel\u00f8p",
|
||||
"url": "URL",
|
||||
"url": "Nettadresse",
|
||||
"title": "Tittel",
|
||||
"first_date": "F\u00f8rste dato",
|
||||
"repetitions": "Repetisjoner",
|
||||
@ -60,18 +60,18 @@ export default {
|
||||
"liabilities_accounts": "Gjeld"
|
||||
},
|
||||
"firefly": {
|
||||
"administration_index": "Financial administration",
|
||||
"administration_index": "\u00d8konomisk administrasjon",
|
||||
"actions": "Handlinger",
|
||||
"edit": "Rediger",
|
||||
"delete": "Slett",
|
||||
"reconcile": "Reconcile",
|
||||
"reconcile": "Avstem",
|
||||
"create_new_asset": "Opprett ny aktivakonto",
|
||||
"confirm_action": "Bekreft handling",
|
||||
"new_budget": "Nytt budsjett",
|
||||
"new_asset_account": "Ny aktivakonto",
|
||||
"newTransfer": "Ny overf\u00f8ring",
|
||||
"submission_options": "Submission options",
|
||||
"apply_rules_checkbox": "Apply rules",
|
||||
"submission_options": "Alternativer for innsending",
|
||||
"apply_rules_checkbox": "Bruk regler",
|
||||
"fire_webhooks_checkbox": "Fire webhooks",
|
||||
"newDeposit": "Nytt innskudd",
|
||||
"newWithdrawal": "Ny utgift",
|
||||
@ -80,7 +80,7 @@ export default {
|
||||
"no_budget": "(ingen budsjett)",
|
||||
"budgeted": "Budsjettert",
|
||||
"spent": "Brukt",
|
||||
"no_bill": "(no bill)",
|
||||
"no_bill": "(ingen regning)",
|
||||
"rule_trigger_source_account_starts_choice": "Kildekonto navn starter med..",
|
||||
"rule_trigger_source_account_ends_choice": "Kildenavnet slutter med..",
|
||||
"rule_trigger_source_account_is_choice": "Kildekonto navn er..",
|
||||
@ -120,7 +120,7 @@ export default {
|
||||
"rule_trigger_budget_is_choice": "Budsjett er..",
|
||||
"rule_trigger_tag_is_choice": "(En) tagg er..",
|
||||
"rule_trigger_currency_is_choice": "Transaksjonsvaluta er..",
|
||||
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
|
||||
"rule_trigger_foreign_currency_is_choice": "Transaksjonens fremmed valuta er..",
|
||||
"rule_trigger_has_attachments_choice": "Har minst s\u00e5 mange vedlegg",
|
||||
"rule_trigger_has_no_category_choice": "Har ingen kategori",
|
||||
"rule_trigger_has_any_category_choice": "Har en (hvilken som helst) kategori",
|
||||
@ -139,29 +139,29 @@ export default {
|
||||
"rule_trigger_bill_is_choice": "Regning er..",
|
||||
"rule_trigger_external_id_is_choice": "Ekstern ID er..",
|
||||
"rule_trigger_internal_reference_is_choice": "Intern referanse er..",
|
||||
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
|
||||
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
|
||||
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
|
||||
"rule_trigger_journal_id_choice": "Transaksjonens journal ID er..",
|
||||
"rule_trigger_any_external_url_choice": "Transaksjonen har en ekstern URL",
|
||||
"rule_trigger_no_external_url_choice": "Transaksjonen har ingen ekstern URL",
|
||||
"rule_trigger_id_choice": "Transaksjons-ID er",
|
||||
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
|
||||
"rule_action_set_category_choice": "Set category to ..",
|
||||
"rule_action_delete_transaction_choice": "SLETT transaksjon(!)",
|
||||
"rule_action_set_category_choice": "Sett kategori til ..",
|
||||
"rule_action_clear_category_choice": "T\u00f8m alle kategorier",
|
||||
"rule_action_set_budget_choice": "Set budget to ..",
|
||||
"rule_action_set_budget_choice": "Sett budsjett til ..",
|
||||
"rule_action_clear_budget_choice": "T\u00f8m alle budsjetter",
|
||||
"rule_action_add_tag_choice": "Add tag ..",
|
||||
"rule_action_remove_tag_choice": "Remove tag ..",
|
||||
"rule_action_add_tag_choice": "Legg til tagg ..",
|
||||
"rule_action_remove_tag_choice": "Fjern tagg ..",
|
||||
"rule_action_remove_all_tags_choice": "Fjern alle tagger",
|
||||
"rule_action_set_description_choice": "Set description to ..",
|
||||
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
|
||||
"rule_action_append_description_choice": "Append description with ..",
|
||||
"rule_action_prepend_description_choice": "Prepend description with ..",
|
||||
"rule_action_set_source_account_choice": "Set source account to ..",
|
||||
"rule_action_set_destination_account_choice": "Set destination account to ..",
|
||||
"rule_action_append_notes_choice": "Append notes with ..",
|
||||
"rule_action_prepend_notes_choice": "Prepend notes with ..",
|
||||
"rule_action_set_description_choice": "Sett beskrivelse til ..",
|
||||
"rule_action_update_piggy_choice": "Legg til \/ fjern transaksjonsbel\u00f8p i sparegris ..",
|
||||
"rule_action_append_description_choice": "Legg til i beskrivelse ..",
|
||||
"rule_action_prepend_description_choice": "Legg til foran beskrivelsen med ..",
|
||||
"rule_action_set_source_account_choice": "Sett kildekonto til ..",
|
||||
"rule_action_set_destination_account_choice": "Sett m\u00e5lkonto til ..",
|
||||
"rule_action_append_notes_choice": "Legg til i notater med ..",
|
||||
"rule_action_prepend_notes_choice": "Legg til foran i notater med ..",
|
||||
"rule_action_clear_notes_choice": "Fjern notater",
|
||||
"rule_action_set_notes_choice": "Set notes to ..",
|
||||
"rule_action_link_to_bill_choice": "Link to a bill ..",
|
||||
"rule_action_set_notes_choice": "Sett notater til ..",
|
||||
"rule_action_link_to_bill_choice": "Koble til en regning ..",
|
||||
"rule_action_convert_deposit_choice": "Konverter transaksjonen til et innskudd",
|
||||
"rule_action_convert_withdrawal_choice": "Konverter denne transaksjonen til et uttak",
|
||||
"rule_action_convert_transfer_choice": "Konverter transaksjonen til en overf\u00f8ring",
|
||||
@ -184,8 +184,8 @@ export default {
|
||||
"single_split": "Del opp",
|
||||
"asset_accounts": "Aktivakontoer",
|
||||
"expense_accounts": "Utgiftskontoer",
|
||||
"liabilities_accounts": "Gjeld",
|
||||
"undefined_accounts": "Accounts",
|
||||
"liabilities_accounts": "Gjeldskonto",
|
||||
"undefined_accounts": "Kontoer",
|
||||
"name": "Navn",
|
||||
"revenue_accounts": "Inntektskontoer",
|
||||
"description": "Beskrivelse",
|
||||
@ -221,8 +221,8 @@ export default {
|
||||
"pref_last90": "Siste 90 dager",
|
||||
"pref_last30": "Siste 30 dagene",
|
||||
"pref_last7": "Siste 7 dager",
|
||||
"pref_YTD": "Year to date",
|
||||
"pref_QTD": "Quarter to date",
|
||||
"pref_MTD": "Month to date"
|
||||
"pref_YTD": "\u00c5r til dato",
|
||||
"pref_QTD": "Kvartal til dato",
|
||||
"pref_MTD": "M\u00e5ned til dato"
|
||||
}
|
||||
}
|
||||
|
@ -338,7 +338,7 @@ page container: q-ma-xs (margin all, xs) AND q-mb-md to give the page content so
|
||||
<q-footer class="bg-grey-8 text-white" bordered>
|
||||
<q-toolbar>
|
||||
<div>
|
||||
<small>Firefly III v v6.0.0-beta.1 © James Cole, AGPL-3.0-or-later.</small>
|
||||
<small>Firefly III v v6.0.0-beta.2 © James Cole, AGPL-3.0-or-later.</small>
|
||||
</div>
|
||||
</q-toolbar>
|
||||
</q-footer>
|
||||
|
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/profile.js
vendored
2
public/v1/js/profile.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/create.js
vendored
2
public/v1/js/webhooks/create.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/edit.js
vendored
2
public/v1/js/webhooks/edit.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/index.js
vendored
2
public/v1/js/webhooks/index.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/webhooks/show.js
vendored
2
public/v1/js/webhooks/show.js
vendored
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><base href=/v3/ ><title>Firefly III</title><meta charset=utf-8><meta content="Personal finances manager" name=description><meta content="telephone=no" name=format-detection><meta content=no name=msapplication-tap-highlight><meta content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" name=viewport><link href=favicon-32x32.png rel=icon sizes=32x32 type=image/png><link href=favicon-16x16.png rel=icon sizes=16x16 type=image/png><link href=maskable76.png rel=apple-touch-icon sizes=76x76><link href=maskable120.png rel=apple-touch-icon sizes=120x120><link href=maskable152.png rel=apple-touch-icon sizes=152x152><link href=apple-touch-icon.png rel=apple-touch-icon sizes=180x180><link color=#3c8dbc href=safari-pinned-tab.svg rel=mask-icon><link href=maskable192.png rel=icon sizes=192x192><link href=maskable128.png rel=icon sizes=128x128><link href=manifest.webmanifest rel=manifest><meta content=#1e6581 name=msapplication-TileColor><meta content=maskable512.png name=msapplication-TileImage><meta content=no name=msapplication-tap-highlight><meta content="Firefly III" name=application-name><meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name=robots><meta content=yes name=apple-mobile-web-app-capable><meta content="Firefly III" name=apple-mobile-web-app-title><meta content="Firefly III" name=application-name><meta content=#3c8dbc name=msapplication-TileColor><meta content="mstile-144x144.png?v=3e8AboOwbd" name=msapplication-TileImage><meta content=#3c8dbc name=theme-color><script defer src=/v3/js/vendor.aba07782.js></script><script defer src=/v3/js/app.8c79411c.js></script><link href=/v3/css/vendor.973c97fc.css rel=stylesheet><link href=/v3/css/app.50c7ba73.css rel=stylesheet></head><body><div id=q-app></div></body></html>
|
||||
<!DOCTYPE html><html><head><base href=/v3/ ><title>Firefly III</title><meta charset=utf-8><meta content="Personal finances manager" name=description><meta content="telephone=no" name=format-detection><meta content=no name=msapplication-tap-highlight><meta content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" name=viewport><link href=favicon-32x32.png rel=icon sizes=32x32 type=image/png><link href=favicon-16x16.png rel=icon sizes=16x16 type=image/png><link href=maskable76.png rel=apple-touch-icon sizes=76x76><link href=maskable120.png rel=apple-touch-icon sizes=120x120><link href=maskable152.png rel=apple-touch-icon sizes=152x152><link href=apple-touch-icon.png rel=apple-touch-icon sizes=180x180><link color=#3c8dbc href=safari-pinned-tab.svg rel=mask-icon><link href=maskable192.png rel=icon sizes=192x192><link href=maskable128.png rel=icon sizes=128x128><link href=manifest.webmanifest rel=manifest><meta content=#1e6581 name=msapplication-TileColor><meta content=maskable512.png name=msapplication-TileImage><meta content=no name=msapplication-tap-highlight><meta content="Firefly III" name=application-name><meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name=robots><meta content=yes name=apple-mobile-web-app-capable><meta content="Firefly III" name=apple-mobile-web-app-title><meta content="Firefly III" name=application-name><meta content=#3c8dbc name=msapplication-TileColor><meta content="mstile-144x144.png?v=3e8AboOwbd" name=msapplication-TileImage><meta content=#3c8dbc name=theme-color><script defer src=/v3/js/vendor.aba07782.js></script><script defer src=/v3/js/app.6cbecb45.js></script><link href=/v3/css/vendor.973c97fc.css rel=stylesheet><link href=/v3/css/app.50c7ba73.css rel=stylesheet></head><body><div id=q-app></div></body></html>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -9,8 +9,8 @@
|
||||
"split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"single_split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID} (\"{title}\")<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") has been updated.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">\u03a4\u03bf Webhook #{ID}<\/a> (\"{title}\") \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID}<\/a> (\"{title}\") \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID}<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af.",
|
||||
"transaction_journal_information": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
@ -92,39 +92,39 @@
|
||||
"multi_account_warning_withdrawal": "\u039b\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c5\u03c0\u03cc\u03c8\u03b7 \u03cc\u03c4\u03b9 \u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03c9\u03bd \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03ce\u03bd \u03b8\u03b1 \u03c5\u03c0\u03b5\u03c1\u03b9\u03c3\u03c7\u03cd\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c1\u03ce\u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03b7\u03c2 \u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7\u03c2.",
|
||||
"multi_account_warning_deposit": "\u039b\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c5\u03c0\u03cc\u03c8\u03b7 \u03cc\u03c4\u03b9 \u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03c9\u03bd \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03ce\u03bd \u03b8\u03b1 \u03c5\u03c0\u03b5\u03c1\u03b9\u03c3\u03c7\u03cd\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c1\u03ce\u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03b7\u03c2 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7\u03c2.",
|
||||
"multi_account_warning_transfer": "\u039b\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c5\u03c0\u03cc\u03c8\u03b7 \u03cc\u03c4\u03b9 \u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03c9\u03bd \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03ce\u03bd \u03b8\u03b1 \u03c5\u03c0\u03b5\u03c1\u03b9\u03c3\u03c7\u03cd\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c1\u03ce\u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03b7\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2.",
|
||||
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
|
||||
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
|
||||
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
|
||||
"webhook_response_TRANSACTIONS": "Transaction details",
|
||||
"webhook_response_ACCOUNTS": "Account details",
|
||||
"webhook_response_none_NONE": "No details",
|
||||
"webhook_trigger_STORE_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
"webhook_trigger_UPDATE_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
"webhook_trigger_DESTROY_TRANSACTION": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
"webhook_response_TRANSACTIONS": "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
"webhook_response_ACCOUNTS": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
|
||||
"webhook_response_none_NONE": "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2",
|
||||
"webhook_delivery_JSON": "JSON",
|
||||
"actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2",
|
||||
"meta_data": "\u039c\u03b5\u03c4\u03b1-\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1",
|
||||
"webhook_messages": "Webhook message",
|
||||
"webhook_messages": "\u039c\u03ae\u03bd\u03c5\u03bc\u03b1 Webhook",
|
||||
"inactive": "\u0391\u03bd\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"no_webhook_messages": "There are no webhook messages",
|
||||
"inspect": "Inspect",
|
||||
"create_new_webhook": "Create new webhook",
|
||||
"no_webhook_messages": "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03b1 webhook",
|
||||
"inspect": "\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2",
|
||||
"create_new_webhook": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 webhook",
|
||||
"webhooks": "Webhooks",
|
||||
"webhook_trigger_form_help": "Indicate on what event the webhook will trigger",
|
||||
"webhook_response_form_help": "Indicate what the webhook must submit to the URL.",
|
||||
"webhook_delivery_form_help": "Which format the webhook must deliver data in.",
|
||||
"webhook_active_form_help": "The webhook must be active or it won't be called.",
|
||||
"edit_webhook_js": "Edit webhook \"{title}\"",
|
||||
"webhook_was_triggered": "The webhook was triggered on the indicated transaction. Please wait for results to appear.",
|
||||
"view_message": "View message",
|
||||
"view_attempts": "View failed attempts",
|
||||
"message_content_title": "Webhook message content",
|
||||
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
|
||||
"attempt_content_title": "Webhook attempts",
|
||||
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
|
||||
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
|
||||
"webhook_attempt_at": "Attempt at {moment}",
|
||||
"logs": "Logs",
|
||||
"response": "Response",
|
||||
"visit_webhook_url": "Visit webhook URL",
|
||||
"reset_webhook_secret": "Reset webhook secret"
|
||||
"webhook_trigger_form_help": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03c4\u03bf webhook",
|
||||
"webhook_response_form_help": "\u03a5\u03c0\u03bf\u03b4\u03b5\u03af\u03be\u03c4\u03b5 \u03c4\u03b9 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c5\u03c0\u03bf\u03b2\u03ac\u03bb\u03b5\u03b9 \u03c4\u03bf webhook \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL.",
|
||||
"webhook_delivery_form_help": "\u03a0\u03bf\u03b9\u03b1 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b4\u03ce\u03c3\u03b5\u03b9 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c4\u03bf webhook.",
|
||||
"webhook_active_form_help": "\u03a4\u03bf webhook \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc \u03b1\u03bb\u03bb\u03b9\u03ce\u03c2 \u03b4\u03b5\u03bd \u03b8\u03b1 \u03ba\u03bb\u03b7\u03b8\u03b5\u03af.",
|
||||
"edit_webhook_js": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 webhook \"{title}\"",
|
||||
"webhook_was_triggered": "\u03a4\u03bf webhook \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03bd\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03c4\u03b1 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1.",
|
||||
"view_message": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2",
|
||||
"view_attempts": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b1\u03c0\u03bf\u03c4\u03c5\u03c7\u03b7\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03b9\u03ce\u03bd",
|
||||
"message_content_title": "\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2 Webhook",
|
||||
"message_content_help": "\u0391\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c4\u03bf\u03c5 \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 (\u03ae \u03b4\u03bf\u03ba\u03b9\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5) \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf webhook.",
|
||||
"attempt_content_title": "\u03a0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b5\u03c2 Webhook",
|
||||
"attempt_content_help": "\u0391\u03c5\u03c4\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b1\u03bd\u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03b5\u03af\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b5\u03c2 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2 webhook \u03b3\u03b9\u03b1 \u03c5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03c4\u03b7\u03bd \u03c1\u03c5\u03b8\u03bc\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL. \u039c\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c7\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1, \u03c4\u03bf Firefly III \u03b8\u03b1 \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ae\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af.",
|
||||
"no_attempts": "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03b5\u03af\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b5\u03c2. \u0391\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03bb\u03cc!",
|
||||
"webhook_attempt_at": "\u03a0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03c3\u03c4\u03bf {moment}",
|
||||
"logs": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 (Logs)",
|
||||
"response": "\u0391\u03c0\u03cc\u03ba\u03c1\u03b9\u03c3\u03b7",
|
||||
"visit_webhook_url": "\u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c6\u03b8\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf URL \u03c4\u03bf\u03c5 webhook",
|
||||
"reset_webhook_secret": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03bc\u03c5\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd webhook"
|
||||
},
|
||||
"form": {
|
||||
"url": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL",
|
||||
|
@ -9,13 +9,13 @@
|
||||
"split": "Del opp",
|
||||
"single_split": "Del opp",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") has been updated.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> er lagret.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") er oppdatert.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> (\"{title}\") has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Transaksjonsinformasjon",
|
||||
"submission_options": "Submission options",
|
||||
"apply_rules_checkbox": "Apply rules",
|
||||
"submission_options": "Alternativer for innsending",
|
||||
"apply_rules_checkbox": "Bruk regler",
|
||||
"fire_webhooks_checkbox": "Fire webhooks",
|
||||
"no_budget_pointer": "Det ser ikke ut til at du har noen budsjetter enn\u00e5. Du b\u00f8r opprette noen p\u00e5 <a href=\"\/budgets\">budsjett<\/a>-siden. Budsjetter kan hjelpe deg med \u00e5 holde oversikt over utgifter.",
|
||||
"no_bill_pointer": "Det ser ut til at du ikke har noen regninger enn\u00e5. Du b\u00f8r opprette noen p\u00e5 <a href=\"bills\">regninger<\/a>-side. Regninger kan hjelpe deg med \u00e5 holde oversikt over utgifter.",
|
||||
@ -31,12 +31,12 @@
|
||||
"date": "Dato",
|
||||
"tags": "Tagger",
|
||||
"no_budget": "(ingen budsjett)",
|
||||
"no_bill": "(no bill)",
|
||||
"no_bill": "(ingen regning)",
|
||||
"category": "Kategori",
|
||||
"attachments": "Vedlegg",
|
||||
"notes": "Notater",
|
||||
"external_url": "Ekstern URL",
|
||||
"update_transaction": "Update transaction",
|
||||
"update_transaction": "Oppdater transaksjonen",
|
||||
"after_update_create_another": "G\u00e5 tilbake hit etter oppdatering, for \u00e5 fortsette \u00e5 redigere.",
|
||||
"store_as_new": "Lagre som en ny transaksjon istedenfor \u00e5 oppdatere.",
|
||||
"split_title_help": "Hvis du oppretter en splittet transaksjon, m\u00e5 du ha en global beskrivelse for alle deler av transaksjonen.",
|
||||
@ -68,7 +68,7 @@
|
||||
"profile_oauth_edit_client": "Rediger Klient",
|
||||
"profile_oauth_name_help": "Noe brukerne dine vil gjenkjenne og stole p\u00e5.",
|
||||
"profile_oauth_redirect_url": "Videresendings-URL",
|
||||
"profile_oauth_clients_external_auth": "If you're using an external authentication provider like Authelia, OAuth Clients will not work. You can use Personal Access Tokens only.",
|
||||
"profile_oauth_clients_external_auth": "Hvis du bruker en ekstern autentiseringsleverand\u00f8r, som Authelia, vil ikke OAuth klienter fungere. Du kan bare bruke personlige tilgangstokener.",
|
||||
"profile_oauth_redirect_url_help": "Programmets tilbakekallingslenke til din adresse.",
|
||||
"profile_authorized_apps": "Dine autoriserte applikasjoner",
|
||||
"profile_authorized_clients": "Autoriserte klienter",
|
||||
@ -127,7 +127,7 @@
|
||||
"reset_webhook_secret": "Tilbakestill Webhook n\u00f8kkel"
|
||||
},
|
||||
"form": {
|
||||
"url": "URL",
|
||||
"url": "Nettadresse",
|
||||
"active": "Aktiv",
|
||||
"interest_date": "Rentedato",
|
||||
"title": "Tittel",
|
||||
@ -138,20 +138,20 @@
|
||||
"payment_date": "Betalingsdato",
|
||||
"invoice_date": "Fakturadato",
|
||||
"internal_reference": "Intern referanse",
|
||||
"webhook_response": "Response",
|
||||
"webhook_trigger": "Trigger",
|
||||
"webhook_delivery": "Delivery"
|
||||
"webhook_response": "Respons",
|
||||
"webhook_trigger": "Utl\u00f8ser",
|
||||
"webhook_delivery": "Levering"
|
||||
},
|
||||
"list": {
|
||||
"active": "Er aktiv?",
|
||||
"trigger": "Trigger",
|
||||
"response": "Response",
|
||||
"delivery": "Delivery",
|
||||
"url": "URL",
|
||||
"secret": "Secret"
|
||||
"trigger": "Utl\u00f8ser",
|
||||
"response": "Respons",
|
||||
"delivery": "Levering",
|
||||
"url": "Nettadresse",
|
||||
"secret": "Hemmelighet"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "nb",
|
||||
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
|
||||
"date_time_fns": "do MMMM, yyyy @ HH:mm:ss"
|
||||
}
|
||||
}
|
@ -9,8 +9,8 @@
|
||||
"split": "Splitsen",
|
||||
"single_split": "Split",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transactie #{ID} (\"{title}\")<\/a> is opgeslagen.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") has been updated.",
|
||||
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} ({title})<\/a> is opgeslagen.",
|
||||
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} ({title})<\/a> is ge\u00fcpdatet.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transactie #{ID}<\/a> (\"{title}\") is ge\u00fcpdatet.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transactie #{ID}<\/a> is opgeslagen.",
|
||||
"transaction_journal_information": "Transactieinformatie",
|
||||
|
@ -47,8 +47,8 @@ return [
|
||||
'last_seven_days' => 'Τελευταίες επτά ημέρες',
|
||||
'last_thirty_days' => 'Τελευταίες τριάντα ημέρες',
|
||||
'last_180_days' => 'Τελευταίες 180 ημέρες',
|
||||
'month_to_date' => 'Month to date',
|
||||
'year_to_date' => 'Year to date',
|
||||
'month_to_date' => 'Από την αρχή του μήνα ως σήμερα',
|
||||
'year_to_date' => 'Από την αρχή του έτους ως σήμερα',
|
||||
'YTD' => 'Από την αρχή του έτους ως σήμερα',
|
||||
'welcome_back' => 'Τι παίζει;',
|
||||
'everything' => 'Όλα',
|
||||
@ -203,7 +203,7 @@ return [
|
||||
'transfer_exchange_rate_instructions' => 'Ο κεφαλαιακός λογαριασμός προέλευσης "@source_name" δέχεται συναλλαγές μόνο σε @source_currency. Ο κεφαλαιακός λογαριασμός προορισμού "@dest_name" δέχεται συναλλαγές μόνο σε @dest_currency. Πρέπει να παρέχετε το σωστό μεταφερόμενο ποσό και στα δύο νομίσματα.',
|
||||
'transaction_data' => 'Δεδομένα συναλλαγής',
|
||||
'invalid_server_configuration' => 'Μη έγκυρη παραμετροποίηση εξυπηρετητή',
|
||||
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
|
||||
'invalid_locale_settings' => 'Το Firefly III δεν είναι σε θέση να διαμορφώσει χρηματικά ποσά επειδή ο διακομιστής σας λείπει τα απαιτούμενα πακέτα. Υπάρχουν <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">οδηγίες πώς να το κάνετε αυτό</a>.',
|
||||
'quickswitch' => 'Εναλλαγή',
|
||||
'sign_in_to_start' => 'Συνδεθείτε για να ξεκινήσετε τη συνεδρία σας',
|
||||
'sign_in' => 'Είσοδος',
|
||||
@ -243,44 +243,44 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_breadcrumb' => 'Webhooks',
|
||||
'no_webhook_messages' => 'There are no webhook messages',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'no_webhook_messages' => 'Δεν υπάρχουν μηνύματα webhook',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'Μετά τη δημιουργία συναλλαγής',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'Μετά την ενημέρωση της συναλλαγής',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'Μετά τη διαγραφή συναλλαγής',
|
||||
'webhook_response_TRANSACTIONS' => 'Λεπτομέρειες συναλλαγής',
|
||||
'webhook_response_ACCOUNTS' => 'Πληροφορίες λογαριασμού',
|
||||
'webhook_response_none_NONE' => 'Δεν υπάρχουν λεπτομέρειες',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'inspect' => 'Έλεγχος',
|
||||
'create_new_webhook' => 'Δημιουργία νέου webhook',
|
||||
'webhooks_create_breadcrumb' => 'Δημιουργία νέου webhook',
|
||||
'webhook_trigger_form_help' => 'Επιλέξτε που θα ενεργοποιηθεί το webhook',
|
||||
'webhook_response_form_help' => 'Υποδείξτε τι πρέπει να υποβάλει το webhook στη διεύθυνση URL.',
|
||||
'webhook_delivery_form_help' => 'Ποια μορφή πρέπει να παραδώσει δεδομένα στο webhook.',
|
||||
'webhook_active_form_help' => 'Το webhook πρέπει να είναι ενεργό αλλιώς δεν θα κληθεί.',
|
||||
'stored_new_webhook' => 'Αποθηκευμένο νέο webhook ":title"',
|
||||
'delete_webhook' => 'Διαγραφή webhook',
|
||||
'deleted_webhook' => 'Διαγραμμένο webhook ":title"',
|
||||
'edit_webhook' => 'Επεξεργασία webhook ":title"',
|
||||
'updated_webhook' => 'Ενημερωμένο webhook ":title"',
|
||||
'edit_webhook_js' => 'Επεξεργασία webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. Please wait for results to appear.',
|
||||
'webhook_messages' => 'Webhook message',
|
||||
'view_message' => 'View message',
|
||||
'view_attempts' => 'View failed attempts',
|
||||
'message_content_title' => 'Webhook message content',
|
||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
||||
'attempt_content_title' => 'Webhook attempts',
|
||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||
'logs' => 'Logs',
|
||||
'response' => 'Response',
|
||||
'visit_webhook_url' => 'Visit webhook URL',
|
||||
'reset_webhook_secret' => 'Reset webhook secret',
|
||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> has been stored.',
|
||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") has been updated.',
|
||||
'webhook_was_triggered' => 'Το webhook ενεργοποιήθηκε στην επιλεγμένη συναλλαγή. Παρακαλώ περιμένετε να εμφανιστούν τα αποτελέσματα.',
|
||||
'webhook_messages' => 'Μήνυμα Webhook',
|
||||
'view_message' => 'Προβολή μηνύματος',
|
||||
'view_attempts' => 'Προβολή αποτυχημένων προσπαθειών',
|
||||
'message_content_title' => 'Περιεχόμενο μηνύματος Webhook',
|
||||
'message_content_help' => 'Αυτό είναι το περιεχόμενο του μηνύματος που στάλθηκε (ή δοκιμάστηκε) χρησιμοποιώντας αυτό το webhook.',
|
||||
'attempt_content_title' => 'Προσπάθειες Webhook',
|
||||
'attempt_content_help' => 'Αυτές είναι όλες οι ανεπιτυχείς προσπάθειες αυτού του μηνύματος webhook για υποβολή στην ρυθμισμένη διεύθυνση URL. Μετά από κάποιο χρονικό διάστημα, το Firefly III θα σταματήσει να προσπαθεί.',
|
||||
'no_attempts' => 'Δεν υπάρχουν ανεπιτυχείς προσπάθειες. Αυτό είναι καλό!',
|
||||
'webhook_attempt_at' => 'Προσπάθεια στο {moment}',
|
||||
'logs' => 'Αρχεία καταγραφής (Logs)',
|
||||
'response' => 'Απόκριση',
|
||||
'visit_webhook_url' => 'Επισκεφθείτε το URL του webhook',
|
||||
'reset_webhook_secret' => 'Επαναφορά μυστικού webhook',
|
||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> έχει αποθηκευτεί.',
|
||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Το Webhook #{ID}</a> ("{title}") έχει ενημερωθεί.',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version',
|
||||
@ -350,34 +350,34 @@ return [
|
||||
*/
|
||||
|
||||
|
||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||
'search_modifier_not_date_on' => 'Transaction date is not ":value"',
|
||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
||||
'search_modifier_not_reconciled' => 'Transaction is not reconciled',
|
||||
'search_modifier_date_on' => 'Η ημερομηνία συναλλαγής είναι ":value"',
|
||||
'search_modifier_not_date_on' => 'Η ημερομηνία συναλλαγής δεν είναι ":value"',
|
||||
'search_modifier_reconciled' => 'Η συναλλαγή είναι τακτοποιημένη',
|
||||
'search_modifier_not_reconciled' => 'Η συναλλαγή δεν έχει τακτοποιηθεί',
|
||||
'search_modifier_id' => 'Το ID συναλλαγής είναι ":value"',
|
||||
'search_modifier_not_id' => 'Transaction ID is not ":value"',
|
||||
'search_modifier_not_id' => 'Το ID συναλλαγής δεν είναι ":value"',
|
||||
'search_modifier_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν ή στις ":value"',
|
||||
'search_modifier_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά ή στις ":value"',
|
||||
'search_modifier_external_id_is' => 'External ID is ":value"',
|
||||
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
|
||||
'search_modifier_external_id_is' => 'Το Εξωτερικό ID είναι ":value"',
|
||||
'search_modifier_not_external_id_is' => 'Το εξωτερικό ID δεν είναι ":value"',
|
||||
'search_modifier_no_external_url' => 'Η συναλλαγή δεν έχει εξωτερικό URL',
|
||||
'search_modifier_no_external_id' => 'The transaction has no external ID',
|
||||
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
|
||||
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
|
||||
'search_modifier_no_external_id' => 'Η συναλλαγή δεν έχει εξωτερικό ID',
|
||||
'search_modifier_not_any_external_url' => 'Η συναλλαγή δεν έχει εξωτερικό URL',
|
||||
'search_modifier_not_any_external_id' => 'Η συναλλαγή δεν έχει εξωτερικό ID',
|
||||
'search_modifier_any_external_url' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) εξωτερικό URL',
|
||||
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
|
||||
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
|
||||
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
|
||||
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
|
||||
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
|
||||
'search_modifier_description_starts' => 'Description starts with ":value"',
|
||||
'search_modifier_not_description_starts' => 'Description does not start with ":value"',
|
||||
'search_modifier_description_ends' => 'Description ends on ":value"',
|
||||
'search_modifier_not_description_ends' => 'Description does not end on ":value"',
|
||||
'search_modifier_any_external_id' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) εξωτερικό ID',
|
||||
'search_modifier_not_no_external_url' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) εξωτερικό URL',
|
||||
'search_modifier_not_no_external_id' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) εξωτερικό ID',
|
||||
'search_modifier_internal_reference_is' => 'Η εσωτερική αναφορά είναι ":value"',
|
||||
'search_modifier_not_internal_reference_is' => 'Η εσωτερική αναφορά δεν είναι ":value"',
|
||||
'search_modifier_description_starts' => 'Η περιγραφή ξεκινά με ":value"',
|
||||
'search_modifier_not_description_starts' => 'Η περιγραφή δεν ξεκινά με ":value"',
|
||||
'search_modifier_description_ends' => 'Η περιγραφή τελειώνει στο ":value"',
|
||||
'search_modifier_not_description_ends' => 'Η περιγραφή δεν τελειώνει στο ":value"',
|
||||
'search_modifier_description_contains' => 'Η περιγραφή περιέχει ":value"',
|
||||
'search_modifier_not_description_contains' => 'Description does not contain ":value"',
|
||||
'search_modifier_not_description_contains' => 'Η περιγραφή δεν περιέχει ":value"',
|
||||
'search_modifier_description_is' => 'Η περιγραφή είναι ακριβώς ":value"',
|
||||
'search_modifier_not_description_is' => 'Description is exactly not ":value"',
|
||||
'search_modifier_not_description_is' => 'Η περιγραφή δεν είναι ακριβώς ":value"',
|
||||
'search_modifier_currency_is' => 'Το (ξένο) νόμισμα της συναλλαγής είναι ":value"',
|
||||
'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"',
|
||||
'search_modifier_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής είναι ":value"',
|
||||
|
@ -58,16 +58,16 @@ return [
|
||||
|
||||
|
||||
// invite
|
||||
'invitation_created_subject' => 'An invitation has been created',
|
||||
'invitation_created_body' => 'Admin user ":email" created a user invitation which can be used by whoever is behind email address ":invitee". The invite will be valid for 48hrs.',
|
||||
'invite_user_subject' => 'You\'ve been invited to create a Firefly III account.',
|
||||
'invitation_introduction' => 'You\'ve been invited to create a Firefly III account on **:host**. Firefly III is a personal, self-hosted, private personal finance manager. All the cool kids are using it.',
|
||||
'invitation_invited_by' => 'You\'ve been invited by ":admin" and this invitation was sent to ":invitee". That\'s you, right?',
|
||||
'invitation_url' => 'The invitation is valid for 48 hours and can be redeemed by surfing to [Firefly III](:url). Enjoy!',
|
||||
'invitation_created_subject' => 'Se ha creado una invitación',
|
||||
'invitation_created_body' => 'El usuario administrador ":email" creó una invitación de usuario que puede ser utilizada por quien esté detrás de la dirección de correo electrónico ":invitee". La invitación será válida durante 48 horas.',
|
||||
'invite_user_subject' => 'Has sido invitado a crear una cuenta de Firefly III.',
|
||||
'invitation_introduction' => 'Has sido invitado a crear una cuenta de Firefly III en **:host**. Firefly III es un gestor de finanzas personales privado, autohospedado y personal.',
|
||||
'invitation_invited_by' => 'Has sido invitado por ":admin" y esta invitación ha sido enviada a ":invitee". Ese eres tú, ¿verdad?',
|
||||
'invitation_url' => 'La invitación es válida por 48 horas y puede ser canjeada navegando a [Firefly III](:url). ¡Disfrútala!',
|
||||
|
||||
// new IP
|
||||
'login_from_new_ip' => 'Nuevo inicio de sesión en Firefly III',
|
||||
'slack_login_from_new_ip' => 'New Firefly III login from IP :ip (:host)',
|
||||
'slack_login_from_new_ip' => 'Nuevo inicio de sesión de Firefly III desde la IP :ip (:host)',
|
||||
'new_ip_body' => 'Firefly III detectó un nuevo inicio de sesión en su cuenta desde una dirección IP desconocida. Si nunca ha iniciado sesión desde la dirección IP de abajo, o fué hace más de seis meses, Firefly III le avisará.',
|
||||
'new_ip_warning' => 'Si reconoce esta dirección IP o el inicio de sesión, puede ignorar este mensaje. Si no ha iniciado sesión, o sí no tiene idea de qué es esto, verifique la seguridad de su contraseña, cámbiela y cierre todas las demás sesiones. Para hacer esto, valla a su página de perfil. Por supuesto que ya tiene A2F habilitado, ¿verdad? ¡Manténgase seguro!',
|
||||
'ip_address' => 'Dirección IP',
|
||||
@ -82,13 +82,13 @@ return [
|
||||
|
||||
// registered
|
||||
'registered_subject' => 'Bienvenido a Firefly III!',
|
||||
'registered_subject_admin' => 'A new user has registered',
|
||||
'admin_new_user_registered' => 'A new user has registered. User **:email** was given user ID #:id.',
|
||||
'registered_subject_admin' => 'Un nuevo usuario se ha registrado',
|
||||
'admin_new_user_registered' => 'Un nuevo usuario se ha registrado. El usuario **:email** ha recibido el ID de usuario #:id.',
|
||||
'registered_welcome' => 'Bienvenido/a a [Firefly III](:address). Su registro se ha realizado correctamente, y este correo electrónico está aquí para confirmarlo. ¡Yeah!',
|
||||
'registered_pw' => 'If you have forgotten your password already, please reset it using [the password reset tool](:address/password/reset).',
|
||||
'registered_pw' => 'Si ya has olvidado tu contraseña, por favor resetéala usando [la herramienta de restablecimiento de contraseña](:address/password/reset).',
|
||||
'registered_help' => 'Hay un icono de ayuda en la esquina superior derecha de cada página. Si necesita ayuda, ¡Haga clic en él!',
|
||||
'registered_doc_html' => 'If you haven\'t already, please read the [grand theory](https://docs.firefly-iii.org/about-firefly-iii/personal-finances).',
|
||||
'registered_doc_text' => 'If you haven\'t already, please also read the first use guide and the full description.',
|
||||
'registered_doc_html' => 'Si aún no lo has hecho, por favor lee la [gran teoría](https://docs.firefly-iii.org/about-firefly-iiii/personal-finances).',
|
||||
'registered_doc_text' => 'Si aún no lo ha hecho, por favor lea la primera guía de uso y la descripción completa.',
|
||||
'registered_closing' => '¡Disfrute!',
|
||||
'registered_firefly_iii_link' => 'Firefly III:',
|
||||
'registered_pw_reset_link' => 'Restablecer contraseña:',
|
||||
@ -107,30 +107,30 @@ return [
|
||||
|
||||
|
||||
// new version
|
||||
'new_version_email_subject' => 'A new Firefly III version is available',
|
||||
'new_version_email_subject' => 'Una nueva versión de Firefly III está disponible',
|
||||
|
||||
// email change
|
||||
'email_change_subject' => 'Se cambió su dirección de email de Firefly III',
|
||||
'email_change_body_to_new' => 'Usted o alguien con acceso a su cuenta de Firefly III ha cambiado su dirección de correo electrónico. Si no esperabas este mensaje, por favor ignórelo y elimínelo.',
|
||||
'email_change_body_to_old' => 'You or somebody with access to your Firefly III account has changed your email address. If you did not expect this to happen, you **must** follow the "undo"-link below to protect your account!',
|
||||
'email_change_body_to_old' => 'Usted o alguien con acceso a su cuenta de Firefly III ha cambiado su dirección de correo electrónico. Si no esperaba que esto suceda, <strong>debe</strong> seguir el enlace "deshacer" para proteger tu cuenta.',
|
||||
'email_change_ignore' => 'Si inició este cambio, puede ignorar este mensaje de forma segura.',
|
||||
'email_change_old' => 'La antigua dirección de correo electrónico era: :email',
|
||||
'email_change_old_strong' => 'The old email address was: **:email**',
|
||||
'email_change_old_strong' => 'La antigua dirección de correo electrónico era: **:email**',
|
||||
'email_change_new' => 'La nueva dirección de correo es: :email',
|
||||
'email_change_new_strong' => 'The new email address is: **:email**',
|
||||
'email_change_new_strong' => 'La nueva dirección de correo electrónico es: **:email**',
|
||||
'email_change_instructions' => 'No puede usar Firefly III hasta que confirme este cambio. Por favor, siga el enlace de abajo para hacerlo.',
|
||||
'email_change_undo_link' => 'Para deshacer el cambio, siga este enlace:',
|
||||
|
||||
// OAuth token created
|
||||
'oauth_created_subject' => 'Se ha creado un nuevo cliente OAuth',
|
||||
'oauth_created_body' => 'Somebody (hopefully you) just created a new Firefly III API OAuth Client for your user account. It\'s labeled ":name" and has callback URL `:url`.',
|
||||
'oauth_created_explanation' => 'With this client, they can access **all** of your financial records through the Firefly III API.',
|
||||
'oauth_created_undo' => 'If this wasn\'t you, please revoke this client as soon as possible at `:url`',
|
||||
'oauth_created_body' => 'Alguien (esperemos que usted) acaba de crear un nuevo cliente API OAuth Firefly III para su cuenta de usuario. Está etiquetado como ":name" y tiene URL de devolución de llamada `:url`.',
|
||||
'oauth_created_explanation' => 'Con este cliente, pueden acceder a **todos** sus registros financieros a través de la API de Firefly III.',
|
||||
'oauth_created_undo' => 'Si no fue usted, por favor revoque este cliente tan pronto como sea posible en :url',
|
||||
|
||||
// reset password
|
||||
'reset_pw_subject' => 'Su solicitud de restablecimiento de contraseña',
|
||||
'reset_pw_instructions' => 'Alguien intentó restablecer su contraseña. Si fue usted, por favor siga el enlace de abajo para hacerlo.',
|
||||
'reset_pw_warning' => '**PLEASE** verify that the link actually goes to the Firefly III you expect it to go!',
|
||||
'reset_pw_warning' => '**PLAZA** verifica que el enlace vaya al Firefly III ¡que esperas que se vaya!',
|
||||
|
||||
// error
|
||||
'error_subject' => 'Ocurrió un error en Firefly III',
|
||||
@ -166,15 +166,15 @@ return [
|
||||
'new_journals_header' => 'Firefly III ha creado una transacción para usted. La puede encontrar en su instalación de Firefly III:|Firefly III ha creado :count transacciones para usted. Las puede encontrar en su instalación de Firefly III:',
|
||||
|
||||
// bill warning
|
||||
'bill_warning_subject_end_date' => 'Your bill ":name" is due to end in :diff days',
|
||||
'bill_warning_subject_now_end_date' => 'Your bill ":name" is due to end TODAY',
|
||||
'bill_warning_subject_extension_date' => 'Your bill ":name" is due to be extended or cancelled in :diff days',
|
||||
'bill_warning_subject_now_extension_date' => 'Your bill ":name" is due to be extended or cancelled TODAY',
|
||||
'bill_warning_end_date' => 'Your bill **":name"** is due to end on :date. This moment will pass in about **:diff days**.',
|
||||
'bill_warning_extension_date' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass in about **:diff days**.',
|
||||
'bill_warning_end_date_zero' => 'Your bill **":name"** is due to end on :date. This moment will pass **TODAY!**',
|
||||
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
||||
'bill_warning_please_action' => 'Please take the appropriate action.',
|
||||
'bill_warning_subject_end_date' => 'Su factura ":name" debe terminar en :diff días',
|
||||
'bill_warning_subject_now_end_date' => 'Tu factura ":name" está por terminar HOY',
|
||||
'bill_warning_subject_extension_date' => 'Su factura ":name" debe ser extendida o cancelada en :diff días',
|
||||
'bill_warning_subject_now_extension_date' => 'Su factura ":name" debe ser extendida o cancelada TODAY',
|
||||
'bill_warning_end_date' => 'Tu factura **":name"** debe terminar el :date. Esto sucederá aproximadamente en **:diff días**.',
|
||||
'bill_warning_extension_date' => 'Tu factura **":name"** debe ampliarse o cancelarse el :date. Esto sucedera aproximadamente en **:diff días**.',
|
||||
'bill_warning_end_date_zero' => 'Tu factura **":name"** debe terminar el :date. Esto sucederá **¡HOY!**',
|
||||
'bill_warning_extension_date_zero' => 'Tu factura **":name"** debe ser extendida o cancelada el :date. Esto sucederá **¡HOY!**',
|
||||
'bill_warning_please_action' => 'Por favor, tomen las medidas adecuadas.',
|
||||
|
||||
];
|
||||
/*
|
||||
|
@ -47,8 +47,8 @@ return [
|
||||
'last_seven_days' => 'Últimos siete días',
|
||||
'last_thirty_days' => 'Últimos treinta días',
|
||||
'last_180_days' => 'Últimos 180 días',
|
||||
'month_to_date' => 'Month to date',
|
||||
'year_to_date' => 'Year to date',
|
||||
'month_to_date' => 'Mes hasta la fecha',
|
||||
'year_to_date' => 'Año a la fecha',
|
||||
'YTD' => 'Año en curso',
|
||||
'welcome_back' => '¿Qué está pasando?',
|
||||
'everything' => 'Todo',
|
||||
|
@ -185,27 +185,27 @@ return [
|
||||
'transferred' => '이체',
|
||||
'all_withdrawal' => '모든 지출',
|
||||
'all_transactions' => '모든 거래',
|
||||
'title_withdrawal_between' => 'All expenses between :start and :end',
|
||||
'all_deposit' => 'All revenue',
|
||||
'title_deposit_between' => 'All revenue between :start and :end',
|
||||
'all_transfers' => 'All transfers',
|
||||
'title_transfers_between' => 'All transfers between :start and :end',
|
||||
'all_transfer' => 'All transfers',
|
||||
'all_journals_for_tag' => 'All transactions for tag ":tag"',
|
||||
'title_transfer_between' => 'All transfers between :start and :end',
|
||||
'all_journals_for_category' => 'All transactions for category :name',
|
||||
'all_journals_for_budget' => 'All transactions for budget :name',
|
||||
'chart_all_journals_for_budget' => 'Chart of all transactions for budget :name',
|
||||
'journals_in_period_for_category' => 'All transactions for category :name between :start and :end',
|
||||
'journals_in_period_for_tag' => 'All transactions for tag :tag between :start and :end',
|
||||
'not_available_demo_user' => 'The feature you try to access is not available to demo users.',
|
||||
'exchange_rate_instructions' => 'Asset account "@name" only accepts transactions in @native_currency. If you wish to use @foreign_currency instead, make sure that the amount in @native_currency is known as well:',
|
||||
'transfer_exchange_rate_instructions' => 'Source asset account "@source_name" only accepts transactions in @source_currency. Destination asset account "@dest_name" only accepts transactions in @dest_currency. You must provide the transferred amount correctly in both currencies.',
|
||||
'transaction_data' => 'Transaction data',
|
||||
'title_withdrawal_between' => ':start와 :end 사이의 모든 지출',
|
||||
'all_deposit' => '모든 수익',
|
||||
'title_deposit_between' => ':start와 :end 사이의 모든 수익',
|
||||
'all_transfers' => '모든 이체',
|
||||
'title_transfers_between' => ':start와 :end 사이의 모든 이체',
|
||||
'all_transfer' => '모든 이체',
|
||||
'all_journals_for_tag' => '":tag" 태그에 대한 모든 거래',
|
||||
'title_transfer_between' => ':start와 :end 사이의 모든 이체',
|
||||
'all_journals_for_category' => ':name 카테고리에 대한 모든 거래',
|
||||
'all_journals_for_budget' => ':name 예산에 대한 모든 거래',
|
||||
'chart_all_journals_for_budget' => ':name 예산에 대한 모든 거래 차트',
|
||||
'journals_in_period_for_category' => ':start와 :end 동안 ":name" 카테고리의 모든 거래',
|
||||
'journals_in_period_for_tag' => ':start와 :end 동안 :tag 태그의 모든 거래',
|
||||
'not_available_demo_user' => '액세스하려는 기능은 데모 사용자가 사용할 수 없습니다.',
|
||||
'exchange_rate_instructions' => '자산 계정 "@name"은 @native_currency 로만 거래할 수 있습니다. @foreign_currency 를 대신 사용하려면 @native_currency 도 알고 있어야 합니다:',
|
||||
'transfer_exchange_rate_instructions' => '소스 자산 계정 "@source_name"은 @source_currency 의 거래만 허용합니다. 대상 자산 계정 "@dest_name"은 @dest_currency 의 거래만 허용합니다. 두 통화로 이체 금액을 정확하게 제공해야 합니다.',
|
||||
'transaction_data' => '거래 데이터',
|
||||
'invalid_server_configuration' => '유효하지 않은 서버 설정',
|
||||
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
|
||||
'invalid_locale_settings' => '서버에 필요한 패키지가 없기 때문에 Firefly III에서 금액을 형식화할 수 없습니다. <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">이 작업을 수행하는 방법에 대한 지침</a>이 있습니다.',
|
||||
'quickswitch' => '퀵스위치',
|
||||
'sign_in_to_start' => 'Sign in to start your session',
|
||||
'sign_in_to_start' => '세션을 시작하려면 로그인하세요.',
|
||||
'sign_in' => '로그인',
|
||||
'register_new_account' => '새로운 계정 등록',
|
||||
'forgot_my_password' => '비밀번호를 잊어버렸습니다',
|
||||
@ -217,15 +217,15 @@ return [
|
||||
'login_page_title' => 'Firefly III 로그인',
|
||||
'register_page_title' => 'Firefly III 등록하기',
|
||||
'forgot_pw_page_title' => 'Firefly III 비밀번호를 잊어버렸습니다',
|
||||
'reset_pw_page_title' => 'Reset your password for Firefly III',
|
||||
'cannot_reset_demo_user' => 'You cannot reset the password of the demo user.',
|
||||
'reset_pw_page_title' => 'Firefly III의 비밀번호 재설정',
|
||||
'cannot_reset_demo_user' => '데모 사용자의 비밀번호는 재설정할 수 없습니다.',
|
||||
'no_att_demo_user' => '데모 유저는 첨부 파일을 업로드할 수 없습니다.',
|
||||
'button_register' => '등록',
|
||||
'authorization' => '인증',
|
||||
'active_bills_only' => 'active bills only',
|
||||
'active_bills_only_total' => 'all active bills',
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'active_exp_bills_only_total' => 'all active expected bills only',
|
||||
'active_bills_only' => '활성화된 청구서만 포함',
|
||||
'active_bills_only_total' => '모든 활성화된 청구서',
|
||||
'active_exp_bills_only' => '활성화 및 예상 청구서만 포함',
|
||||
'active_exp_bills_only_total' => '모든 활성화 및 예상 청구서만 포함',
|
||||
'per_period_sum_1D' => '일간 예상 비용',
|
||||
'per_period_sum_1W' => '주간 예상 비용',
|
||||
'per_period_sum_1M' => '월간 예상 비용',
|
||||
@ -233,39 +233,39 @@ return [
|
||||
'per_period_sum_6M' => '반기 예상 비용',
|
||||
'per_period_sum_1Y' => '년간 예상 비용',
|
||||
'average_per_bill' => '청구서당 평균',
|
||||
'expected_total' => 'expected total',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'expected_total' => '예상 합계',
|
||||
'reconciliation_account_name' => ':name 조정 (:currency)',
|
||||
'saved' => '저장 완료',
|
||||
'advanced_options' => '고급 옵션',
|
||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||
'advanced_options_explain' => 'Firefly III의 일부 페이지에는 이 버튼 뒤에 고급 옵션이 숨겨져 있습니다. 이 페이지에는 멋진 옵션이 없지만 다른 페이지도 확인해 보세요!',
|
||||
'here_be_dragons' => 'Hic sunt dracones',
|
||||
|
||||
// Webhooks
|
||||
'webhooks' => '웹훅',
|
||||
'webhooks_breadcrumb' => '웹훅',
|
||||
'no_webhook_messages' => '웹훅 메시지 없음',
|
||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
||||
'webhook_trigger_STORE_TRANSACTION' => '거래 생성 이후',
|
||||
'webhook_trigger_UPDATE_TRANSACTION' => '거래 업데이트 이후',
|
||||
'webhook_trigger_DESTROY_TRANSACTION' => '거래 삭제 이후',
|
||||
'webhook_response_TRANSACTIONS' => '거래 세부 정보',
|
||||
'webhook_response_ACCOUNTS' => 'Account details',
|
||||
'webhook_response_none_NONE' => 'No details',
|
||||
'webhook_response_ACCOUNTS' => '계정 정보',
|
||||
'webhook_response_none_NONE' => '상세정보 없음',
|
||||
'webhook_delivery_JSON' => 'JSON',
|
||||
'inspect' => 'Inspect',
|
||||
'create_new_webhook' => 'Create new webhook',
|
||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
|
||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
||||
'delete_webhook' => 'Delete webhook',
|
||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
||||
'edit_webhook' => 'Edit webhook ":title"',
|
||||
'updated_webhook' => 'Updated webhook ":title"',
|
||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
||||
'show_webhook' => 'Webhook ":title"',
|
||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. Please wait for results to appear.',
|
||||
'inspect' => '검사',
|
||||
'create_new_webhook' => '웹훅 만들기',
|
||||
'webhooks_create_breadcrumb' => '웹훅 만들기',
|
||||
'webhook_trigger_form_help' => '웹훅이 트리거할 이벤트를 표시합니다',
|
||||
'webhook_response_form_help' => '웹훅이 URL에 제출해야 하는 내용을 표시합니다.',
|
||||
'webhook_delivery_form_help' => '웹훅이 데이터를 전달해야 하는 형식입니다.',
|
||||
'webhook_active_form_help' => '웹훅이 활성화되어 있어야 하며 그렇지 않으면 호출되지 않습니다.',
|
||||
'stored_new_webhook' => '새로운 ":title" 웹훅 저장됨',
|
||||
'delete_webhook' => '웹훅 삭제',
|
||||
'deleted_webhook' => '":title" 웹훅 삭제됨',
|
||||
'edit_webhook' => '":title" 웹훅 수정',
|
||||
'updated_webhook' => '":title" 웹훅 업데이트됨',
|
||||
'edit_webhook_js' => '"{title}" 웹훅 수정',
|
||||
'show_webhook' => '":title" 웹훅',
|
||||
'webhook_was_triggered' => '표시된 거래에서 웹훅이 트리거되었습니다. 결과가 나타날 때까지 기다려주세요.',
|
||||
'webhook_messages' => '웹훅 메시지',
|
||||
'view_message' => '메시지 보기',
|
||||
'view_attempts' => '실패한 시도 보기',
|
||||
@ -369,9 +369,9 @@ return [
|
||||
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
|
||||
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
|
||||
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
|
||||
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
|
||||
'search_modifier_description_starts' => 'Description starts with ":value"',
|
||||
'search_modifier_not_description_starts' => 'Description does not start with ":value"',
|
||||
'search_modifier_not_internal_reference_is' => '내부 참조가 ":value"가 아닙니다',
|
||||
'search_modifier_description_starts' => '설명이 ":value"로 시작합니다',
|
||||
'search_modifier_not_description_starts' => '설명이 ":value"로 시작하지 않습니다',
|
||||
'search_modifier_description_ends' => 'Description ends on ":value"',
|
||||
'search_modifier_not_description_ends' => 'Description does not end on ":value"',
|
||||
'search_modifier_description_contains' => 'Description contains ":value"',
|
||||
|
@ -198,55 +198,55 @@ return [
|
||||
'mass_make_selection' => '체크박스을 해제하여 항목이 삭제되지 않도록 할 수 있습니다.',
|
||||
'delete_all_permanently' => '선택한 항목을 영구적으로 삭제',
|
||||
'update_all_journals' => '이 거래 업데이트',
|
||||
'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.|All :count transactions connected to this account will be deleted as well.',
|
||||
'also_delete_transactions_js' => 'No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.',
|
||||
'also_delete_connections' => 'The only transaction linked with this link type will lose this connection.|All :count transactions linked with this link type will lose their connection.',
|
||||
'also_delete_rules' => 'The only rule connected to this rule group will be deleted as well.|All :count rules connected to this rule group will be deleted as well.',
|
||||
'also_delete_piggyBanks' => 'The only piggy bank connected to this account will be deleted as well.|All :count piggy bank connected to this account will be deleted as well.',
|
||||
'also_delete_piggyBanks_js' => 'No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.',
|
||||
'not_delete_piggy_banks' => 'The piggy bank connected to this group will not be deleted.|The :count piggy banks connected to this group will not be deleted.',
|
||||
'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.',
|
||||
'check_for_updates' => 'Check for updates',
|
||||
'liability_direction' => 'Liability in/out',
|
||||
'delete_object_group' => 'Delete group ":title"',
|
||||
'email' => 'Email address',
|
||||
'also_delete_transactions' => '이 계정에 연결된 유일한 거래도 삭제됩니다.|이 계정에 연결된 모든 :count개의 거래도 삭제됩니다.',
|
||||
'also_delete_transactions_js' => '거래가 없습니다|이 계정에 연결된 유일한 거래도 삭제됩니다.|이 계정에 연결된 모든 {count}개의 거래도 삭제됩니다.',
|
||||
'also_delete_connections' => '이 링크 유형과 연결된 유일한 거래의 연결이 끊어집니다.|이 링크 유형과 연결된 모든 :count개의 거래의 연결이 끊어집니다.',
|
||||
'also_delete_rules' => '이 규칙 그룹에 연결된 유일한 규칙이 삭제됩니다.|이 규칙 그룹에 연결된 모든 :count개의 규칙이 삭제됩니다.',
|
||||
'also_delete_piggyBanks' => '이 계정에 연결된 유일한 저금통 역시 삭제됩니다.|이 계정에 연결된 모든 :count개의 저금통 역시 삭제됩니다.',
|
||||
'also_delete_piggyBanks_js' => '저금통이 없습니다|이 계정에 연결된 유일한 저금통 역시 삭제됩니다.|이 계정에 연결된 모든 {count}개의 저금통 역시 삭제됩니다.',
|
||||
'not_delete_piggy_banks' => '이 그룹에 연결된 저금통은 삭제되지 않습니다|이 그룹에 연결된 :count개의 저금통은 삭제되지 않습니다.',
|
||||
'bill_keep_transactions' => '이 영수증에 연결된 유일한 거래는 삭제되지 않습니다.|이 영수증에 연결된 모든 :count개의 거래는 삭제되지 않습니다.',
|
||||
'budget_keep_transactions' => '이 예산에 연결된 유일한 거래는 삭제되지 않습니다.|이 예산에 연결된 모든 :count개의 거래는 삭제되지 않습니다.',
|
||||
'category_keep_transactions' => '이 카테고리에 연결된 유일한 거래는 삭제되지 않습니다.|이 카테고리에 연결된 모든 :count개의 거래는 삭제되지 않습니다.',
|
||||
'recurring_keep_transactions' => '이 반복 거래에 의해 생성된 유일한 거래는 삭제되지 않습니다.|이 반복 거래에 의해 생성된 모든 :count개의 거래는 삭제되지 않습니다.',
|
||||
'tag_keep_transactions' => '이 태그에 연결된 유일한 거래는 삭제되지 않습니다.|이 태그에 연결된 모든 :count개의 거래는 삭제되지 않습니다.',
|
||||
'check_for_updates' => '업데이트 확인',
|
||||
'liability_direction' => '부채 입출금',
|
||||
'delete_object_group' => '":title" 그룹 삭제',
|
||||
'email' => '이메일 주소',
|
||||
'password' => '비밀번호',
|
||||
'password_confirmation' => '비밀번호 (확인)',
|
||||
'blocked' => 'Is blocked?',
|
||||
'blocked_code' => 'Reason for block',
|
||||
'login_name' => 'Login',
|
||||
'is_owner' => 'Is admin?',
|
||||
'blocked' => '차단되었나요?',
|
||||
'blocked_code' => '차단 이유',
|
||||
'login_name' => '로그인',
|
||||
'is_owner' => '관리자인가요?',
|
||||
'url' => 'URL',
|
||||
'bill_end_date' => 'End date',
|
||||
'bill_end_date' => '종료 날짜',
|
||||
|
||||
// import
|
||||
'apply_rules' => 'Apply rules',
|
||||
'artist' => 'Artist',
|
||||
'album' => 'Album',
|
||||
'song' => 'Song',
|
||||
'apply_rules' => '규칙 적용',
|
||||
'artist' => '아티스트',
|
||||
'album' => '앨범',
|
||||
'song' => '노래',
|
||||
|
||||
|
||||
// admin
|
||||
'domain' => 'Domain',
|
||||
'single_user_mode' => 'Disable user registration',
|
||||
'is_demo_site' => 'Is demo site',
|
||||
'domain' => '도메인',
|
||||
'single_user_mode' => '사용자 등록 비활성화',
|
||||
'is_demo_site' => '데모사이트입니다.',
|
||||
|
||||
// import
|
||||
'configuration_file' => 'Configuration file',
|
||||
'csv_comma' => 'A comma (,)',
|
||||
'csv_semicolon' => 'A semicolon (;)',
|
||||
'csv_tab' => 'A tab (invisible)',
|
||||
'csv_delimiter' => 'CSV field delimiter',
|
||||
'client_id' => 'Client ID',
|
||||
'app_id' => 'App ID',
|
||||
'secret' => 'Secret',
|
||||
'public_key' => 'Public key',
|
||||
'country_code' => 'Country code',
|
||||
'provider_code' => 'Bank or data-provider',
|
||||
'configuration_file' => '설정 파일',
|
||||
'csv_comma' => '쉼표 (,)',
|
||||
'csv_semicolon' => '세미콜론 (;)',
|
||||
'csv_tab' => '탭 (보이지 않음)',
|
||||
'csv_delimiter' => 'CSV 필드 구분기호',
|
||||
'client_id' => '클라이언트 ID',
|
||||
'app_id' => '앱 ID',
|
||||
'secret' => '시크릿',
|
||||
'public_key' => '공개 키',
|
||||
'country_code' => '국가 코드',
|
||||
'provider_code' => '은행 또는 데이터제공자',
|
||||
'fints_url' => 'FinTS API URL',
|
||||
'fints_port' => '포트',
|
||||
'fints_bank_code' => '은행 코드',
|
||||
|
@ -57,13 +57,13 @@ return [
|
||||
'accounts_create_asset_virtual' => '계정에 가상 잔고를 제공하는 것이 도움이 될 수 있습니다. 즉, 실제 잔액에서 항상 추가되거나 제거되는 추가 금액입니다.',
|
||||
|
||||
// budgets index
|
||||
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
||||
'budgets_index_set_budget' => 'Set your total budget for every period so Firefly III can tell you if you have budgeted all available money.',
|
||||
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
||||
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
||||
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
||||
'budgets_index_intro' => '예산은 재정을 관리하는 데 사용되며 Firefly III의 핵심 기능 중 하나입니다.',
|
||||
'budgets_index_set_budget' => '모든 기간에 대한 총 예산을 설정하면 Firefly III에서 사용 가능한 모든 예산을 책정했는지 여부를 알려줍니다.',
|
||||
'budgets_index_see_expenses_bar' => '돈을 쓰면 이 막대가 서서히 채워집니다.',
|
||||
'budgets_index_navigate_periods' => '기간을 탐색하여 예산을 미리 쉽게 설정할 수 있습니다.',
|
||||
'budgets_index_new_budget' => '필요에 따라 새 예산을 만들 수 있습니다.',
|
||||
'budgets_index_list_of_budgets' => '이 표를 사용하여 각 예산의 금액을 설정하고 진행 상황을 확인하세요.',
|
||||
'budgets_index_outro' => '예산 책정에 대해 자세히 알아보려면 오른쪽 상단의 도움말 아이콘을 확인하세요.',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -78,41 +78,41 @@ return [
|
||||
|
||||
|
||||
// reports (index)
|
||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.',
|
||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
||||
'reports_index_intro' => '이 보고서를 사용하여 재정에 대한 자세한 인사이트를 얻으세요.',
|
||||
'reports_index_inputReportType' => '보고서 유형을 선택합니다. 도움말 페이지에서 각 보고서에 표시되는 내용을 확인하세요.',
|
||||
'reports_index_inputAccountsSelect' => '원하는 대로 자산 계정을 제외하거나 포함할 수 있습니다.',
|
||||
'reports_index_inputDateRange' => '선택한 날짜 범위는 하루에서 10년까지 전적으로 사용자에게 달려 있습니다.',
|
||||
'reports_index_extra-options-box' => '선택한 보고서에 따라 여기에서 추가 필터 및 옵션을 선택할 수 있습니다. 보고서 유형을 변경할 때 이 상자를 확인하세요.',
|
||||
|
||||
// reports (reports)
|
||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
||||
'reports_report_default_intro' => '이 보고서는 재정에 대한 빠르고 포괄적인 개요를 제공합니다. 다른 것을 보고 싶다면 망설이지 말고 저에게 연락하세요!',
|
||||
'reports_report_audit_intro' => '이 보고서는 자산 계정에 대한 자세한 전망을 제공합니다.',
|
||||
'reports_report_audit_optionsBox' => '체크박스를 사용하여 관심 있는 열을 표시하거나 숨길 수 있습니다.',
|
||||
|
||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
||||
'reports_report_category_intro' => '이 보고서는 하나 또는 그 이상의 카테고리에 대한 전망을 제공합니다.',
|
||||
'reports_report_category_pieCharts' => '이 차트를 통해 카테고리 또는 계정별 지출과 수입에 대한 전망을 얻을 수 있습니다.',
|
||||
'reports_report_category_incomeAndExpensesChart' => '이 차트는 카테고리별 지출과 수입을 보여줍니다.',
|
||||
|
||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
||||
'reports_report_tag_intro' => '이 보고서는 하나 또는 그 이상의 태그에 대한 전망을 제공합니다.',
|
||||
'reports_report_tag_pieCharts' => '이 차트를 통해 태그, 계정, 카테고리 또는 예산별로 지출과 수입에 대한 전망을 얻을 수 있습니다.',
|
||||
'reports_report_tag_incomeAndExpensesChart' => '이 차트는 태그별 지출과 수입을 보여줍니다.',
|
||||
|
||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
||||
'reports_report_budget_intro' => '이 보고서는 하나 또는 그 이상의 예산에 대한 전망을 제공합니다.',
|
||||
'reports_report_budget_pieCharts' => '이 차트를 통해 예산 또는 계정별 지출에 대한 전망을 얻을 수 있습니다.',
|
||||
'reports_report_budget_incomeAndExpensesChart' => '이 차트는 예산별 지출을 보여줍니다.',
|
||||
|
||||
// create transaction
|
||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
||||
'transactions_create_switch_box' => '이 버튼으로 저장하려는 거래 유형을 빠르게 전환할 수 있습니다.',
|
||||
'transactions_create_ffInput_category' => '이 필드는 자유롭게 입력할 수 있습니다. 이전에 생성한 카테고리가 제안됩니다.',
|
||||
'transactions_create_withdrawal_ffInput_budget' => '더 나은 재정 관리를 위해 출금을 예산에 연결하십시오.',
|
||||
'transactions_create_withdrawal_currency_dropdown_amount' => '다른 통화로 출금할 때 이 드롭다운을 사용하세요.',
|
||||
'transactions_create_deposit_currency_dropdown_amount' => '다른 통화로 입금할 때 이 드롭다운을 사용하세요.',
|
||||
'transactions_create_transfer_ffInput_piggy_bank_id' => '저금통을 선택하고 이 이체를 예금에 연결하십시오.',
|
||||
|
||||
// piggy banks index:
|
||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
||||
'piggy-banks_index_saved' => '이 필드는 각 저금통에 얼마나 저축했는지를 보여줍니다.',
|
||||
'piggy-banks_index_button' => '이 진행률 표시줄 옆에는 각 저금통에서 돈을 추가하거나 제거하는 두 개의 버튼(+ 와 -)이 있습니다.',
|
||||
'piggy-banks_index_accountStatus' => '저금통이 하나 이상 있는 각 자산 계정의 상태는 이 표에 나열되어 있습니다.',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -131,42 +131,42 @@ return [
|
||||
'piggy-banks_create_date' => '저금통의 목표 날짜 또는 마감기한을 설정할 수 있습니다.',
|
||||
|
||||
// show piggy
|
||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
||||
'piggy-banks_show_piggyChart' => '이 차트는 이 저금통의 이력을 보여줍니다.',
|
||||
'piggy-banks_show_piggyDetails' => '저금통에 대한 몇 가지 세부 정보',
|
||||
'piggy-banks_show_piggyEvents' => '추가 또는 제거된 항목 역시 여기에 나열됩니다.',
|
||||
|
||||
// bill index
|
||||
'bills_index_rules' => 'Here you see which rules will check if this bill is hit',
|
||||
'bills_index_paid_in_period' => 'This field indicates when the bill was last paid.',
|
||||
'bills_index_expected_in_period' => 'This field indicates for each bill if and when the next bill is expected to hit.',
|
||||
'bills_index_rules' => '여기에서 이 청구서가 적중했는지를 확인하는 규칙을 볼 수 있습니다.',
|
||||
'bills_index_paid_in_period' => '이 항목은 청구서가 마지막으로 지불된 시점을 나타냅니다.',
|
||||
'bills_index_expected_in_period' => '이 항목은 각 청구서에 대해 다음 청구서의 발생이 예상되는 시점을 표시합니다.',
|
||||
|
||||
// show bill
|
||||
'bills_show_billInfo' => 'This table shows some general information about this bill.',
|
||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this bill.',
|
||||
'bills_show_billChart' => 'This chart shows the transactions linked to this bill.',
|
||||
'bills_show_billInfo' => '이 표는 이 청구서에 대한 일반적인 정보를 보여줍니다.',
|
||||
'bills_show_billButtons' => '이 버튼을 사용하여 이전 거래를 다시 스캔하여 이 청구서와 일치하도록 합니다.',
|
||||
'bills_show_billChart' => '이 차트는 이 청구서와 연결된 거래를 보여줍니다.',
|
||||
|
||||
// create bill
|
||||
'bills_create_intro' => 'Use bills to track the amount of money you\'re due every period. Think about expenses like rent, insurance or mortgage payments.',
|
||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
||||
'bills_create_intro' => '청구서를 사용하여 매 기간마다 납부해야 할 금액을 추적하세요. 집세, 보험료, 모기지 상환금과 같은 지출에 대해 생각해 보세요.',
|
||||
'bills_create_name' => '"임대료"나 "건강 보험"과 같이 설명이 포함된 이름을 사용합니다.',
|
||||
//'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this bill.',
|
||||
'bills_create_repeat_freq_holder' => 'Most bills repeat monthly, but you can set another frequency here.',
|
||||
'bills_create_skip_holder' => 'If a bill repeats every 2 weeks, the "skip"-field should be set to "1" to skip every other week.',
|
||||
'bills_create_amount_min_holder' => '이 청구서의 최소 및 최대 금액을 선택합니다.',
|
||||
'bills_create_repeat_freq_holder' => '대부분의 청구서는 매월 반복되지만 여기에서 다른 주기를 설정할 수 있습니다.',
|
||||
'bills_create_skip_holder' => '청구서가 2주마다 반복되는 경우, 격주로 건너뛰려면 "건너뛰기" 항목을 "1"로 설정해야 합니다.',
|
||||
|
||||
// rules index
|
||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
||||
'rules_index_intro' => 'Firefly III를 사용하면 생성하거나 편집하는 모든 거래에 자동으로 적용되는 규칙을 관리할 수 있습니다.',
|
||||
'rules_index_new_rule_group' => '더 쉬운 관리를 위해 규칙을 그룹으로 결합할 수 있습니다.',
|
||||
'rules_index_new_rule' => '원하는 만큼 규칙을 만듭니다.',
|
||||
'rules_index_prio_buttons' => '원하는 방식대로 주문하세요.',
|
||||
'rules_index_test_buttons' => '규칙을 테스트하거나 기존 거래에 적용할 수 있습니다.',
|
||||
'rules_index_rule-triggers' => '규칙은 드래그 앤 드롭으로 정렬 가능한 "트리거" 와 "작업"이 가집니다.',
|
||||
'rules_index_outro' => '오른쪽 상단의 (?) 아이콘을 이용해 도움말 페이지를 확인하세요!',
|
||||
|
||||
// create rule:
|
||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
||||
'rules_create_actions' => 'Set as many actions as you like.',
|
||||
'rules_create_mandatory' => '설명이 포함된 제목을 선택하고 규칙이 실행될 시기를 설정합니다.',
|
||||
'rules_create_ruletriggerholder' => '원하는 만큼 트리거를 추가하되, 모든 트리거가 일치해야 액션이 실행된다는 점을 기억하세요.',
|
||||
'rules_create_test_rule_triggers' => '이 버튼을 사용하여 어떤 거래가 규칙과 일치하는지 확인합니다.',
|
||||
'rules_create_actions' => '원하는 만큼 작업을 설정하세요.',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -41,33 +41,33 @@ return [
|
||||
'create_date' => '생성일',
|
||||
'update_date' => '수정일',
|
||||
'updated_at' => '수정일',
|
||||
'balance_before' => 'Balance before',
|
||||
'balance_after' => 'Balance after',
|
||||
'balance_before' => '이전 잔고',
|
||||
'balance_after' => '이후 잔고',
|
||||
'name' => '이름',
|
||||
'role' => '역할',
|
||||
'currentBalance' => '현재 잔고',
|
||||
'linked_to_rules' => '관련 규칙',
|
||||
'active' => 'Is active?',
|
||||
'active' => '활성 상태입니까?',
|
||||
'percentage' => '%',
|
||||
'recurring_transaction' => '반복 거래',
|
||||
'next_due' => 'Next due',
|
||||
'next_due' => '다음 마감일',
|
||||
'transaction_type' => '유형',
|
||||
'lastActivity' => 'Last activity',
|
||||
'balanceDiff' => 'Balance difference',
|
||||
'other_meta_data' => 'Other meta data',
|
||||
'invited_at' => 'Invited at',
|
||||
'expires' => 'Invitation expires',
|
||||
'invited_by' => 'Invited by',
|
||||
'invite_link' => 'Invite link',
|
||||
'account_type' => 'Account type',
|
||||
'created_at' => 'Created at',
|
||||
'account' => 'Account',
|
||||
'external_url' => 'External URL',
|
||||
'lastActivity' => '마지막 활동',
|
||||
'balanceDiff' => '잔고 차이',
|
||||
'other_meta_data' => '다른 메타데이터',
|
||||
'invited_at' => '초대됨',
|
||||
'expires' => '초대 만료됨',
|
||||
'invited_by' => '에 의해 초대됨',
|
||||
'invite_link' => '초대 링크',
|
||||
'account_type' => '계정 유형',
|
||||
'created_at' => '생성일',
|
||||
'account' => '계정',
|
||||
'external_url' => '외부 URL',
|
||||
'matchingAmount' => '금액',
|
||||
'destination' => 'Destination',
|
||||
'source' => 'Source',
|
||||
'next_expected_match' => 'Next expected match',
|
||||
'automatch' => 'Auto match?',
|
||||
'destination' => '대상',
|
||||
'source' => '소스',
|
||||
'next_expected_match' => '다음 예상 매치',
|
||||
'automatch' => '자동 매칭?',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -81,70 +81,70 @@ return [
|
||||
*/
|
||||
|
||||
|
||||
'repeat_freq' => 'Repeats',
|
||||
'description' => 'Description',
|
||||
'repeat_freq' => '반복',
|
||||
'description' => '설명',
|
||||
'amount' => '금액',
|
||||
'date' => '날짜',
|
||||
'interest_date' => 'Interest date',
|
||||
'book_date' => 'Book date',
|
||||
'process_date' => 'Processing date',
|
||||
'due_date' => 'Due date',
|
||||
'payment_date' => 'Payment date',
|
||||
'invoice_date' => 'Invoice date',
|
||||
'internal_reference' => 'Internal reference',
|
||||
'notes' => 'Notes',
|
||||
'from' => 'From',
|
||||
'interest_date' => '이자 날짜',
|
||||
'book_date' => '예약일',
|
||||
'process_date' => '처리일',
|
||||
'due_date' => '기한',
|
||||
'payment_date' => '결제일',
|
||||
'invoice_date' => '청구서 날짜',
|
||||
'internal_reference' => '내부 참조',
|
||||
'notes' => '메모',
|
||||
'from' => '에서',
|
||||
'piggy_bank' => '저금통',
|
||||
'to' => 'To',
|
||||
'to' => '에게',
|
||||
'budget' => '예산',
|
||||
'category' => '카테고리',
|
||||
'bill' => 'Bill',
|
||||
'bill' => '청구서',
|
||||
'withdrawal' => '출금',
|
||||
'deposit' => '입금',
|
||||
'transfer' => '이체',
|
||||
'type' => '유형',
|
||||
'completed' => '완료',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'paid_current_period' => 'Paid this period',
|
||||
'account_number' => '계좌 번호',
|
||||
'paid_current_period' => '이 기간동안 지불됨',
|
||||
'email' => '이메일',
|
||||
'registered_at' => 'Registered at',
|
||||
'is_blocked' => 'Is blocked',
|
||||
'is_admin' => 'Is admin',
|
||||
'has_two_factor' => 'Has 2FA',
|
||||
'registered_at' => '등록일',
|
||||
'is_blocked' => '차단됨',
|
||||
'is_admin' => '관리자',
|
||||
'has_two_factor' => '2FA 있음',
|
||||
'blocked_code' => '블록 코드',
|
||||
'source_account' => 'Source account',
|
||||
'destination_account' => 'Destination account',
|
||||
'accounts_count' => 'Number of accounts',
|
||||
'journals_count' => 'Number of transactions',
|
||||
'attachments_count' => 'Number of attachments',
|
||||
'source_account' => '소스 계정',
|
||||
'destination_account' => '대상 계정',
|
||||
'accounts_count' => '계정 갯수',
|
||||
'journals_count' => '거래 갯수',
|
||||
'attachments_count' => '첨부파일 갯수',
|
||||
'bills_count' => '청구서 갯수',
|
||||
'categories_count' => '카테고리 갯수',
|
||||
'budget_count' => '예산 갯수',
|
||||
'rule_and_groups_count' => 'Number of rules and rule groups',
|
||||
'rule_and_groups_count' => '규칙과 규칙 그룹 갯수',
|
||||
'tags_count' => '태그 갯수',
|
||||
'tags' => '태그',
|
||||
'inward' => 'Inward description',
|
||||
'outward' => 'Outward description',
|
||||
'number_of_transactions' => 'Number of transactions',
|
||||
'total_amount' => 'Total amount',
|
||||
'inward' => '내부 설명',
|
||||
'outward' => '외부 설명',
|
||||
'number_of_transactions' => '거래 갯수',
|
||||
'total_amount' => '전체 금액',
|
||||
'sum' => '합계',
|
||||
'sum_excluding_transfers' => '합계 (이체 제외)',
|
||||
'sum_withdrawals' => '출금 합계',
|
||||
'sum_deposits' => 'Sum of deposits',
|
||||
'sum_deposits' => '입금 합계',
|
||||
'sum_transfers' => '이체 합계',
|
||||
'sum_reconciliations' => '조정 합계',
|
||||
'reconcile' => 'Reconcile',
|
||||
'sepa_ct_id' => 'SEPA End to End Identifier',
|
||||
'sepa_ct_op' => 'SEPA Opposing Account Identifier',
|
||||
'sepa_db' => 'SEPA Mandate Identifier',
|
||||
'sepa_country' => 'SEPA Country',
|
||||
'sepa_cc' => 'SEPA Clearing Code',
|
||||
'sepa_ep' => 'SEPA External Purpose',
|
||||
'sepa_ci' => 'SEPA Creditor Identifier',
|
||||
'sepa_batch_id' => 'SEPA Batch ID',
|
||||
'external_id' => 'External ID',
|
||||
'account_at_bunq' => 'Account with bunq',
|
||||
'reconcile' => '조정',
|
||||
'sepa_ct_id' => 'SEPA 종단간 식별자',
|
||||
'sepa_ct_op' => 'SEPA 상대 계정 식별자',
|
||||
'sepa_db' => 'SEPA 위임 식별자',
|
||||
'sepa_country' => 'SEPA 국가',
|
||||
'sepa_cc' => 'SEPA 클리어링 코드',
|
||||
'sepa_ep' => 'SEPA 외부 목적',
|
||||
'sepa_ci' => 'SEPA 채권자 식별자',
|
||||
'sepa_batch_id' => 'SEPA 배치 ID',
|
||||
'external_id' => '외부 ID',
|
||||
'account_at_bunq' => 'Bunq 계정',
|
||||
'file_name' => '파일명',
|
||||
|
||||
/*
|
||||
@ -161,28 +161,28 @@ return [
|
||||
|
||||
'file_size' => '파일 크기',
|
||||
'file_type' => '파일 형식',
|
||||
'attached_to' => 'Attached to',
|
||||
'file_exists' => 'File exists',
|
||||
'attached_to' => '첨부',
|
||||
'file_exists' => '파일 존재',
|
||||
'spectre_bank' => '은행',
|
||||
'spectre_last_use' => '최종 로그인',
|
||||
'spectre_status' => '상태',
|
||||
'bunq_payment_id' => 'bunq payment ID',
|
||||
'repetitions' => 'Repetitions',
|
||||
'title' => 'Title',
|
||||
'transaction_s' => 'Transaction(s)',
|
||||
'field' => 'Field',
|
||||
'value' => 'Value',
|
||||
'interest' => 'Interest',
|
||||
'interest_period' => 'Interest period',
|
||||
'liability_type' => 'Type of liability',
|
||||
'liability_direction' => 'Liability in/out',
|
||||
'end_date' => 'End date',
|
||||
'payment_info' => 'Payment information',
|
||||
'expected_info' => 'Next expected transaction',
|
||||
'start_date' => 'Start date',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'bunq_payment_id' => 'bunq 지불 ID',
|
||||
'repetitions' => '반복',
|
||||
'title' => '제목',
|
||||
'transaction_s' => '거래',
|
||||
'field' => '필드',
|
||||
'value' => '값',
|
||||
'interest' => '이자',
|
||||
'interest_period' => '이자 기간',
|
||||
'liability_type' => '부채 유형',
|
||||
'liability_direction' => '부채 입출금',
|
||||
'end_date' => '종료 날짜',
|
||||
'payment_info' => '결제 정보',
|
||||
'expected_info' => '다음 예상 거래',
|
||||
'start_date' => '시작일',
|
||||
'trigger' => '트리거',
|
||||
'response' => '응답',
|
||||
'delivery' => '전달',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
|
||||
|
@ -66,7 +66,7 @@ CONTEXTREQUEST',
|
||||
|
||||
//'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'MMMM Do, YYYY, @ HH:mm:ss',
|
||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||
'date_time_fns' => 'do MMMM, yyyy @ HH:mm:ss',
|
||||
|
||||
//'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
@ -81,7 +81,7 @@ CONTEXTREQUEST',
|
||||
//'half_year' => '%B %Y',
|
||||
'half_year_js' => '\QQ YYYY',
|
||||
|
||||
'quarter_fns' => "'Q'Q, yyyy",
|
||||
'quarter_fns' => "'kvartal'Q, yyyy",
|
||||
'half_year_fns' => "'H{half}', yyyy",
|
||||
'dow_1' => 'Mandag',
|
||||
'dow_2' => 'Tirsdag',
|
||||
|
@ -37,8 +37,8 @@ declare(strict_types=1);
|
||||
return [
|
||||
// common items
|
||||
'greeting' => 'Hei der,',
|
||||
'closing' => 'Pip Boop,',
|
||||
'signature' => 'The Firefly III Mail Robot',
|
||||
'closing' => 'Biip Boop,',
|
||||
'signature' => 'Fra din vennlige Firefly III epost robot',
|
||||
'footer_ps' => 'PS: Denne meldingen ble sendt fordi en forespørsel fra IP :ipAddress utløste den.',
|
||||
|
||||
// admin test
|
||||
@ -58,16 +58,16 @@ return [
|
||||
|
||||
|
||||
// invite
|
||||
'invitation_created_subject' => 'An invitation has been created',
|
||||
'invitation_created_body' => 'Admin user ":email" created a user invitation which can be used by whoever is behind email address ":invitee". The invite will be valid for 48hrs.',
|
||||
'invite_user_subject' => 'You\'ve been invited to create a Firefly III account.',
|
||||
'invitation_introduction' => 'You\'ve been invited to create a Firefly III account on **:host**. Firefly III is a personal, self-hosted, private personal finance manager. All the cool kids are using it.',
|
||||
'invitation_invited_by' => 'You\'ve been invited by ":admin" and this invitation was sent to ":invitee". That\'s you, right?',
|
||||
'invitation_url' => 'The invitation is valid for 48 hours and can be redeemed by surfing to [Firefly III](:url). Enjoy!',
|
||||
'invitation_created_subject' => 'En invitasjon har blitt opprettet',
|
||||
'invitation_created_body' => 'Admin bruker ":email" opprettet en brukerinvitasjon til ":invitee. Invitasjonen vil være gyldig i 48 timer.',
|
||||
'invite_user_subject' => 'Du har blitt invitert til å lage en Firefly III-konto.',
|
||||
'invitation_introduction' => 'Du har blitt invitert til å lage en Firefly III konto på **:host**. Firefly III er en personlig, "self-hosted" privat finansforvalter. Alle de kule barna bruker den.',
|
||||
'invitation_invited_by' => 'Du har blitt invitert av ":admin" og denne invitasjonen ble sendt til ":invitee. Det er deg, ikke sant?',
|
||||
'invitation_url' => 'Invitasjonen er gyldig i 48 timer og kan løses inn ved å gå til [Firefly III](:url. Nyt!',
|
||||
|
||||
// new IP
|
||||
'login_from_new_ip' => 'Ny pålogging på Firefly III',
|
||||
'slack_login_from_new_ip' => 'New Firefly III login from IP :ip (:host)',
|
||||
'slack_login_from_new_ip' => 'Ny Firefly III innlogging fra IP :ip (:host)',
|
||||
'new_ip_body' => 'Firefly III oppdaget en ny pålogging på kontoen fra en ukjent IP-adresse. Hvis du aldri har logget inn fra IP-adressen under, eller det har vært mer enn et halvt år siden, vil Firefly III advare deg.',
|
||||
'new_ip_warning' => 'Hvis du gjenkjenner denne IP-adressen eller påloggingen, kan du ignorere denne meldingen. Hvis du ikke har logget inn, så har du ikke peiling på hva dette gjelder, bekreft passordsikkerhet, endre det, og logg ut alle økter. For å gjøre dette, gå til profilsiden. Selvsagt har du 2FA aktivert allerede, ikke sant? Vær trygg!',
|
||||
'ip_address' => 'IP-adresse',
|
||||
@ -82,8 +82,8 @@ return [
|
||||
|
||||
// registered
|
||||
'registered_subject' => 'Velkommen til Firefly III!',
|
||||
'registered_subject_admin' => 'A new user has registered',
|
||||
'admin_new_user_registered' => 'A new user has registered. User **:email** was given user ID #:id.',
|
||||
'registered_subject_admin' => 'En ny bruker har registrert seg',
|
||||
'admin_new_user_registered' => 'En ny bruker har registrert seg. Bruker **:email har fått ID #:id.',
|
||||
'registered_welcome' => 'Velkommen til [Firefly III](:address). Din registrering er fullført, og denne e-posten er her for å bekrefte det. Kanon!',
|
||||
'registered_pw' => 'Hvis du har glemt passordet ditt allerede, kan du tilbakestille det ved å bruke [passord reset tool](:address/password/reset).',
|
||||
'registered_help' => 'Det er et hjelp-ikon i hjørnet øverst til høyre på hver side. Hvis du trenger hjelp, kan du klikke på den!',
|
||||
@ -107,7 +107,7 @@ return [
|
||||
|
||||
|
||||
// new version
|
||||
'new_version_email_subject' => 'A new Firefly III version is available',
|
||||
'new_version_email_subject' => 'En ny Firefly III versjon er tilgjengelig',
|
||||
|
||||
// email change
|
||||
'email_change_subject' => 'Din Firefly III e-postadresse er endret',
|
||||
@ -140,14 +140,14 @@ return [
|
||||
'error_location' => 'Denne feilen oppstod i filen "<span style="font-family: monospace;">:file</span>" på linje :line med kode :code.',
|
||||
'error_user' => 'Feilen oppstod på av brukeren #:id, <a href="mailto::email">:email</a>.',
|
||||
'error_no_user' => 'Det var ingen bruker som var pålogget for denne feilen, eller ingen bruker ble oppdaget.',
|
||||
'error_ip' => 'The IP address related to this error is: :ip',
|
||||
'error_url' => 'URL is: :url',
|
||||
'error_user_agent' => 'User agent: :userAgent',
|
||||
'error_stacktrace' => 'The full stacktrace is below. If you think this is a bug in Firefly III, you can forward this message to <a href="mailto:james@firefly-iii.org?subject=BUG!">james@firefly-iii.org</a>. This can help fix the bug you just encountered.',
|
||||
'error_github_html' => 'If you prefer, you can also open a new issue on <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.',
|
||||
'error_github_text' => 'If you prefer, you can also open a new issue on https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'The full stacktrace is below:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_ip' => 'IP-adressen relatert til denne feilen er: :ip',
|
||||
'error_url' => 'URL er: :url',
|
||||
'error_user_agent' => 'Brukeragent: :userAgent',
|
||||
'error_stacktrace' => 'Hele informasjonen er under. Hvis du tror dette er en feil i Firefly III, kan du videresende denne meldingen til <a href="mailto:james@firefly-iii.org?subject=BUG!">james@firefly-ii. rg</a>. Dette kan hjelpe med å rette opp feilen du nettopp har funnet.',
|
||||
'error_github_html' => 'Hvis du foretrekker, kan du også åpne et nytt problem på <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.',
|
||||
'error_github_text' => 'Hvis du foretrekker, kan du også åpne et nytt problem på https://github.com/firefly-ii/firefly-ii/issues.',
|
||||
'error_stacktrace_below' => 'Hele informasjonen er:',
|
||||
'error_headers' => 'Følgende headers kan også være relevant:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -162,19 +162,19 @@ return [
|
||||
|
||||
|
||||
// report new journals
|
||||
'new_journals_subject' => 'Firefly III has created a new transaction|Firefly III has created :count new transactions',
|
||||
'new_journals_header' => 'Firefly III has created a transaction for you. You can find it in your Firefly III installation:|Firefly III has created :count transactions for you. You can find them in your Firefly III installation:',
|
||||
'new_journals_subject' => 'Firefly III har opprettet en ny transaksjon|Firefly III har skapt :count nye transaksjoner',
|
||||
'new_journals_header' => 'Firefly III har opprettet en transaksjon for deg. Du finner den i din Firefly III installasjon|:Firefly III har laget :count transaksjoner for deg. Du kan finne dem i Firefly III installasjonen:',
|
||||
|
||||
// bill warning
|
||||
'bill_warning_subject_end_date' => 'Your bill ":name" is due to end in :diff days',
|
||||
'bill_warning_subject_now_end_date' => 'Your bill ":name" is due to end TODAY',
|
||||
'bill_warning_subject_extension_date' => 'Your bill ":name" is due to be extended or cancelled in :diff days',
|
||||
'bill_warning_subject_now_extension_date' => 'Your bill ":name" is due to be extended or cancelled TODAY',
|
||||
'bill_warning_end_date' => 'Your bill **":name"** is due to end on :date. This moment will pass in about **:diff days**.',
|
||||
'bill_warning_extension_date' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass in about **:diff days**.',
|
||||
'bill_warning_end_date_zero' => 'Your bill **":name"** is due to end on :date. This moment will pass **TODAY!**',
|
||||
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
||||
'bill_warning_please_action' => 'Please take the appropriate action.',
|
||||
'bill_warning_subject_end_date' => 'Regningen din ":name" har forfallsdato om :diff dager',
|
||||
'bill_warning_subject_now_end_date' => 'Regningen din ":name" har forfallsdato I DAG',
|
||||
'bill_warning_subject_extension_date' => 'Regningen din ":name vil bli forlenget eller kansellert om :diff dager',
|
||||
'bill_warning_subject_now_extension_date' => 'Regningen din ":name vil bli forlenget eller kansellert I DAG',
|
||||
'bill_warning_end_date' => 'Regningen din **":name"** avsluttes :date. Dette er om **:diff dager**.',
|
||||
'bill_warning_extension_date' => 'Regningen din **":name"** vil bli forlenget eller annullert :date. Dette er om **:diff dager**.',
|
||||
'bill_warning_end_date_zero' => 'Regningen din **":name"** avsluttes :date. Dette er **I DAG!**',
|
||||
'bill_warning_extension_date_zero' => 'Regningen din **":name"** skal forlenges eller annulleres :date. Dette er **I DAG!**',
|
||||
'bill_warning_please_action' => 'Vennligst gjør de rette tiltakene.',
|
||||
|
||||
];
|
||||
/*
|
||||
|
@ -45,7 +45,7 @@ return [
|
||||
'be_right_back' => 'Er straks tilbake!',
|
||||
'check_back' => 'Firefly III er nede for nødvendig vedlikehold. Vennligst sjekk tilbake om en stund.',
|
||||
'error_occurred' => 'Beklager, en feil har oppstått.',
|
||||
'db_error_occurred' => 'Whoops! A database error occurred.',
|
||||
'db_error_occurred' => 'Uff da! En databasefeil har oppstått.',
|
||||
'error_not_recoverable' => 'Dessverre ble ikke denne feilen fikset :(. Firefly III ødelagt. Feilen er:',
|
||||
'error' => 'Feil',
|
||||
'error_location' => 'Denne feilen oppstod i filen <span style="font-family: monospace;">:file</span> på linje :line med kode :code.',
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -36,7 +36,7 @@ declare(strict_types=1);
|
||||
|
||||
return [
|
||||
// new user:
|
||||
'bank_name' => 'Navn på bank',
|
||||
'bank_name' => 'Bankens navn',
|
||||
'bank_balance' => 'Saldo',
|
||||
'savings_balance' => 'Sparesaldo',
|
||||
'credit_card_limit' => 'Kredittkortgrense',
|
||||
@ -50,12 +50,12 @@ return [
|
||||
'match' => 'Treff på',
|
||||
'strict' => 'Streng modus',
|
||||
'repeat_freq' => 'Gjentas',
|
||||
'object_group' => 'Group',
|
||||
'location' => 'Location',
|
||||
'update_channel' => 'Update channel',
|
||||
'object_group' => 'Gruppe',
|
||||
'location' => 'Sted',
|
||||
'update_channel' => 'Oppdater kanal',
|
||||
'currency_id' => 'Valuta',
|
||||
'transaction_currency_id' => 'Valuta',
|
||||
'auto_budget_currency_id' => 'Currency',
|
||||
'auto_budget_currency_id' => 'Valuta',
|
||||
'external_ip' => 'Serverens eksterne IP',
|
||||
'attachments' => 'Vedlegg',
|
||||
'BIC' => 'BIC',
|
||||
@ -70,10 +70,10 @@ return [
|
||||
'currency' => 'Valuta',
|
||||
'account_id' => 'Aktivakonto',
|
||||
'budget_id' => 'Busjett',
|
||||
'bill_id' => 'Bill',
|
||||
'opening_balance' => 'Opening balance',
|
||||
'bill_id' => 'Regning',
|
||||
'opening_balance' => 'Inngående balanse',
|
||||
'tagMode' => 'Taggmodus',
|
||||
'virtual_balance' => 'Virtual balance',
|
||||
'virtual_balance' => 'Virtuell balanse',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -88,10 +88,10 @@ return [
|
||||
|
||||
|
||||
'targetamount' => 'Målbeløp',
|
||||
'account_role' => 'Account role',
|
||||
'opening_balance_date' => 'Opening balance date',
|
||||
'cc_type' => 'Credit card payment plan',
|
||||
'cc_monthly_payment_date' => 'Credit card monthly payment date',
|
||||
'account_role' => 'Konto rolle',
|
||||
'opening_balance_date' => 'Dato inngående saldo',
|
||||
'cc_type' => 'Betalingsplan for kredittkort',
|
||||
'cc_monthly_payment_date' => 'Månedlig betalingsdato for kredittkort',
|
||||
'piggy_bank_id' => 'Sparegris',
|
||||
'returnHere' => 'Gå tilbake hit',
|
||||
'returnHereExplanation' => 'Gå tilbake hit etter lagring for å legge til på nytt.',
|
||||
@ -106,10 +106,10 @@ return [
|
||||
'api_key' => 'API-nøkkel',
|
||||
'remember_me' => 'Husk meg',
|
||||
'liability_type_id' => 'Gjeldstype',
|
||||
'liability_type' => 'Liability type',
|
||||
'liability_type' => 'Gjeldstype',
|
||||
'interest' => 'Rente',
|
||||
'interest_period' => 'Renteperiode',
|
||||
'extension_date' => 'Extension date',
|
||||
'extension_date' => 'Dato for utsettelse',
|
||||
'type' => 'Type',
|
||||
'convert_Withdrawal' => 'Konverter uttak',
|
||||
'convert_Deposit' => 'Konverter innskudd',
|
||||
@ -131,7 +131,7 @@ return [
|
||||
'symbol' => 'Symbol',
|
||||
'code' => 'Kode',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Account number',
|
||||
'account_number' => 'Kontonummer',
|
||||
'creditCardNumber' => 'Kredittkortnummer',
|
||||
'has_headers' => 'Overskrifter',
|
||||
'date_format' => 'Datoformat',
|
||||
@ -146,11 +146,11 @@ return [
|
||||
'stop_processing' => 'Stopp prosessering',
|
||||
'start_date' => 'Startgrense',
|
||||
'end_date' => 'Sluttgrense',
|
||||
'enddate' => 'End date',
|
||||
'start' => 'Start of range',
|
||||
'end' => 'End of range',
|
||||
'enddate' => 'Sluttdato',
|
||||
'start' => 'Start område',
|
||||
'end' => 'Slutt område',
|
||||
'delete_account' => 'Slett konto ":name"',
|
||||
'delete_webhook' => 'Delete webhook ":title"',
|
||||
'delete_webhook' => 'Slett webhook ":title',
|
||||
'delete_bill' => 'Slett regning ":name"',
|
||||
'delete_budget' => 'Slett budsjett ":name"',
|
||||
'delete_category' => 'Slett kategori ":name"',
|
||||
@ -165,13 +165,13 @@ return [
|
||||
'user_areYouSure' => 'Hvis du sletter brukeren ":email", vil alt bli borte. Det er ikke mulig å angre eller gjenopprette brukeren. Hvis du sletter din egen bruker, vil du miste tilgangen til Firefly III.',
|
||||
'attachment_areYouSure' => 'Er du sikker på at du vil slette vedlegget ved navn ":name"?',
|
||||
'account_areYouSure' => 'Er du sikker på at du vil slette brukeren ved navn ":name"?',
|
||||
'account_areYouSure_js' => 'Are you sure you want to delete the account named "{name}"?',
|
||||
'account_areYouSure_js' => 'Er du sikker på at du vil slette kontoen "{name}"?',
|
||||
'bill_areYouSure' => 'Er du sikker på at du vil slette regningen ved navn ":name"?',
|
||||
'rule_areYouSure' => 'Er du sikker på at du vil slette regelen ved navn ":title"?',
|
||||
'object_group_areYouSure' => 'Are you sure you want to delete the group titled ":title"?',
|
||||
'object_group_areYouSure' => 'Er du sikker på at du vil slette gruppen ved navn ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Er du sikker på at du vil slette regelgruppen ved navn ":title"?',
|
||||
'budget_areYouSure' => 'Er du sikker på at du vil slette budsjettet ved navn ":name"?',
|
||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
||||
'webhook_areYouSure' => 'Er du sikker på at du vil slette webhooken ved navn ":title"?',
|
||||
'category_areYouSure' => 'Er du sikker på at du vil slette kategorien ved navn ":name"?',
|
||||
'recurring_areYouSure' => 'Er du sikker på at du vil slette gjentakende transaksjonen ved navn ":title"?',
|
||||
'currency_areYouSure' => 'Er du sikker på at du vil slette valutaen ved navn ":name"?',
|
||||
@ -199,29 +199,29 @@ return [
|
||||
'delete_all_permanently' => 'Slett valgte elementer permanent',
|
||||
'update_all_journals' => 'Oppdater disse transaksjonene',
|
||||
'also_delete_transactions' => 'Den ene transaksjonen som er koblet til denne kontoen, vil også bli slettet. | Alle :count transaksjoner som er koblet til denne kontoen, slettes også.',
|
||||
'also_delete_transactions_js' => 'No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.',
|
||||
'also_delete_transactions_js' => 'Ingen transaksjoner|Den eneste transaksjonen som er knyttet til denne kontoen, vil også bli slettet| Alle {count} transaksjoner som er koblet til denne kontoen vil bli slettet.',
|
||||
'also_delete_connections' => 'Den ene transaksjonen som er knyttet til denne koblingstypen, vil miste denne forbindelsen. | Alle :count transaksjoner knyttet til denne koblingstypen vil miste forbindelsen.',
|
||||
'also_delete_rules' => 'Den ene regelen som er knyttet til denne regelgruppen, vil også bli slettet. | Alle de :count reglene som er knyttet til denne regelgruppen slettes også.',
|
||||
'also_delete_piggyBanks' => 'Den ene sparegrisen som er koblet til denne kontoen, vil også bli slettet. | Alle de :count sparegrisene knyttet til denne kontoen slettes også.',
|
||||
'also_delete_piggyBanks_js' => 'No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.',
|
||||
'not_delete_piggy_banks' => 'The piggy bank connected to this group will not be deleted.|The :count piggy banks connected to this group will not be deleted.',
|
||||
'also_delete_piggyBanks_js' => 'Finner ingen sparegriser|Den eneste sparegrisen som er knyttet til denne kontoen vil også bli slettet.|Alle {count} sparegriser som er koblet til denne kontoen vil også bli slettet.',
|
||||
'not_delete_piggy_banks' => 'Sparegrisen som er knyttet til denne gruppen vil ikke bli slettet.| De :count sparegrisene som er koblet til denne gruppen vil ikke bli slettet.',
|
||||
'bill_keep_transactions' => 'Ingen transaksjoner knyttet til denne regningen blir slettet.|Ingen av de :count transaksjonene knyttet til denne regningen vil bli slettet.',
|
||||
'budget_keep_transactions' => 'Ingen transaksjoner knyttet til dette budsjettet blir slettet.|Ingen av de :count transaksjonene knyttet til dette budsjettet vil bli slettet.',
|
||||
'category_keep_transactions' => 'Ingen transaksjoner knyttet til denne kategorien blir slettet.|Ingen av de :count transaksjonene knyttet til denne kategorien vil bli slettet.',
|
||||
'recurring_keep_transactions' => 'Ingen transaksjoner knyttet til denne gjentakende transaksjonen blir slettet.|Ingen av de :count transaksjonene knyttet til denne gjentakende transaksjonen vil bli slettet.',
|
||||
'tag_keep_transactions' => 'Ingen transaksjoner knyttet til denne tag blir slettet.|Ingen av de :count transaksjonene knyttet til denne tag vil bli slettet.',
|
||||
'check_for_updates' => 'Se etter oppdateringer',
|
||||
'liability_direction' => 'Liability in/out',
|
||||
'delete_object_group' => 'Delete group ":title"',
|
||||
'liability_direction' => 'Gjeld inn/ut',
|
||||
'delete_object_group' => 'Slett gruppe ":title"',
|
||||
'email' => 'Epostadresse',
|
||||
'password' => 'Passord',
|
||||
'password_confirmation' => 'Passord (gjenta)',
|
||||
'blocked' => 'Er sperret?',
|
||||
'blocked_code' => 'Årsak til sperring',
|
||||
'login_name' => 'Logg inn',
|
||||
'is_owner' => 'Is admin?',
|
||||
'url' => 'URL',
|
||||
'bill_end_date' => 'End date',
|
||||
'is_owner' => 'Er admin?',
|
||||
'url' => 'Nettadresse',
|
||||
'bill_end_date' => 'Sluttdato',
|
||||
|
||||
// import
|
||||
'apply_rules' => 'Bruk regler',
|
||||
@ -288,20 +288,20 @@ return [
|
||||
'calendar' => 'Kalender',
|
||||
'weekend' => 'Helg',
|
||||
'client_secret' => 'Client Secret',
|
||||
'withdrawal_destination_id' => 'Destination account',
|
||||
'deposit_source_id' => 'Source account',
|
||||
'expected_on' => 'Expected on',
|
||||
'paid' => 'Paid',
|
||||
'auto_budget_type' => 'Auto-budget',
|
||||
'auto_budget_amount' => 'Auto-budget amount',
|
||||
'auto_budget_period' => 'Auto-budget period',
|
||||
'collected' => 'Collected',
|
||||
'submitted' => 'Submitted',
|
||||
'key' => 'Key',
|
||||
'value' => 'Content of record',
|
||||
'webhook_delivery' => 'Delivery',
|
||||
'webhook_response' => 'Response',
|
||||
'webhook_trigger' => 'Trigger',
|
||||
'withdrawal_destination_id' => 'Målkonto',
|
||||
'deposit_source_id' => 'Kildekonto',
|
||||
'expected_on' => 'Forventet den',
|
||||
'paid' => 'Betalt',
|
||||
'auto_budget_type' => 'Auto-budsjett',
|
||||
'auto_budget_amount' => 'Auto-budsjett beløp',
|
||||
'auto_budget_period' => 'Auto-budsjett periode',
|
||||
'collected' => 'Innhentet',
|
||||
'submitted' => 'Innsendt',
|
||||
'key' => 'Nøkkel',
|
||||
'value' => 'Innhold i registeret',
|
||||
'webhook_delivery' => 'Levering',
|
||||
'webhook_response' => 'Respons',
|
||||
'webhook_trigger' => 'Utløser',
|
||||
];
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -36,18 +36,18 @@ declare(strict_types=1);
|
||||
|
||||
return [
|
||||
// index
|
||||
'index_intro' => 'Velkommen til forsiden til Firefly III. Ta deg tid til å gå gjennom denne introen for å få en følelse av hvordan Firefly III fungerer.',
|
||||
'index_intro' => 'Velkommen til indekssiden i Firefly III. Ta deg tid til å gå gjennom denne introduksjonen for å få en følelse av hvordan Firefly III fungerer.',
|
||||
'index_accounts-chart' => 'Dette diagrammet viser gjeldende saldo på aktivakontoene dine. Du kan velge kontoene som er synlige her under innstillinger.',
|
||||
'index_box_out_holder' => 'Denne lille boksen og boksene ved siden av gir deg rask oversikt over din økonomiske situasjon.',
|
||||
'index_help' => 'Hvis du trenger hjelp til en side eller et skjema, trykker du på denne knappen.',
|
||||
'index_outro' => 'De fleste sidene av Firefly III vil starte med en liten gjennomgang slik som denne. Ta kontakt med meg hvis du har spørsmål eller kommentarer. Sett igang!',
|
||||
'index_sidebar-toggle' => 'For å opprette nye transaksjoner, kontoer eller andre ting, bruk menyen under dette ikonet.',
|
||||
'index_cash_account' => 'These are the accounts created so far. You can use the cash account to track cash expenses but it\'s not mandatory of course.',
|
||||
'index_cash_account' => 'Dette er kontoene som er opprettet så langt. Du kan bruke kontantkontoen til å spore kontantutgifter, men det er selvfølgelig ikke obligatorisk.',
|
||||
|
||||
// transactions
|
||||
'transactions_create_basic_info' => 'Skriv inn grunnleggende informasjon om din transaksjon. Kilde, destinasjon, dato og beskrivelse.',
|
||||
'transactions_create_amount_info' => 'Angi mengde for transaksjonen. Hvis nødvendig vil feltene auto-oppdatere for utenlansk beløp info.',
|
||||
'transactions_create_optional_info' => 'All of these fields are optional. Adding meta-data here will make your transactions better organised.',
|
||||
'transactions_create_optional_info' => 'Alle disse feltene er valgfrie. Å legge til meta-data her vil gjøre transaksjonene dine bedre organisert.',
|
||||
'transactions_create_split' => 'Hvis du vil dele en transaksjon, kan du legge til flere deler med denne knappen',
|
||||
|
||||
// create account:
|
||||
|
@ -48,17 +48,17 @@ return [
|
||||
'currentBalance' => 'Nåværende saldo',
|
||||
'linked_to_rules' => 'Relevante regler',
|
||||
'active' => 'Er aktiv?',
|
||||
'percentage' => 'pct.',
|
||||
'recurring_transaction' => 'Recurring transaction',
|
||||
'percentage' => 'pst.',
|
||||
'recurring_transaction' => 'Gjentakende transaksjon',
|
||||
'next_due' => 'Neste frist',
|
||||
'transaction_type' => 'Type',
|
||||
'lastActivity' => 'Siste aktivitet',
|
||||
'balanceDiff' => 'Saldodifferanse',
|
||||
'other_meta_data' => 'Andre meta-data',
|
||||
'invited_at' => 'Invited at',
|
||||
'expires' => 'Invitation expires',
|
||||
'invited_by' => 'Invited by',
|
||||
'invite_link' => 'Invite link',
|
||||
'invited_at' => 'Invitert',
|
||||
'expires' => 'Invitasjonen utløper',
|
||||
'invited_by' => 'Invitert av',
|
||||
'invite_link' => 'Invitasjons lenke',
|
||||
'account_type' => 'Kontotype',
|
||||
'created_at' => 'Opprettet',
|
||||
'account' => 'Konto',
|
||||
@ -133,7 +133,7 @@ return [
|
||||
'sum_withdrawals' => 'Sum av uttak',
|
||||
'sum_deposits' => 'Sum av innskudd',
|
||||
'sum_transfers' => 'Sum av overføringer',
|
||||
'sum_reconciliations' => 'Sum of reconciliations',
|
||||
'sum_reconciliations' => 'Sum av avstemminger',
|
||||
'reconcile' => 'Avstem',
|
||||
'sepa_ct_id' => 'SEPA ende-til-ende identifikator',
|
||||
'sepa_ct_op' => 'SEPA Motstående kontoidentifikator',
|
||||
@ -173,18 +173,18 @@ return [
|
||||
'field' => 'Felt',
|
||||
'value' => 'Verdi',
|
||||
'interest' => 'Renter',
|
||||
'interest_period' => 'Interest period',
|
||||
'interest_period' => 'Renteperiode',
|
||||
'liability_type' => 'Type gjeld',
|
||||
'liability_direction' => 'Liability in/out',
|
||||
'liability_direction' => 'Gjeld inn/ut',
|
||||
'end_date' => 'Sluttdato',
|
||||
'payment_info' => 'Betalingsinformasjon',
|
||||
'expected_info' => 'Next expected transaction',
|
||||
'start_date' => 'Start date',
|
||||
'trigger' => 'Trigger',
|
||||
'response' => 'Response',
|
||||
'delivery' => 'Delivery',
|
||||
'url' => 'URL',
|
||||
'secret' => 'Secret',
|
||||
'expected_info' => 'Neste forventede transaksjon',
|
||||
'start_date' => 'Start dato',
|
||||
'trigger' => 'Utløser',
|
||||
'response' => 'Respons',
|
||||
'delivery' => 'Levering',
|
||||
'url' => 'Nettadresse',
|
||||
'secret' => 'Hemmelighet',
|
||||
|
||||
];
|
||||
/*
|
||||
|
@ -35,13 +35,13 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'missing_where' => 'Matrise mangler "hvor"-klausul',
|
||||
'missing_update' => 'Matrise mangler "Oppdater"-klausul',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
'invalid_update_key' => 'JSON contains an invalid key for the "update"-clause',
|
||||
'invalid_query_data' => 'There is invalid data in the %s:%s field of your query.',
|
||||
'invalid_query_account_type' => 'Your query contains accounts of different types, which is not allowed.',
|
||||
'invalid_query_currency' => 'Your query contains accounts that have different currency settings, which is not allowed.',
|
||||
'missing_where' => 'Matrise mangler "where"-klausul',
|
||||
'missing_update' => 'Matrise mangler "update"-klausul',
|
||||
'invalid_where_key' => 'JSON inneholder en ugyldig nøkkel for "where"-klausulen',
|
||||
'invalid_update_key' => 'JSON inneholder en ugyldig nøkkel for "update"-klausulen',
|
||||
'invalid_query_data' => 'Det finnes ugyldig data i %s:%s -feltet for din spørring.',
|
||||
'invalid_query_account_type' => 'Spørringen inneholder kontoer av ulike typer, som ikke er tillatt.',
|
||||
'invalid_query_currency' => 'Søket inneholder kontoer som har ulike valuta-innstillinger, som ikke er tillatt.',
|
||||
'iban' => 'Dette er ikke en gyldig IBAN.',
|
||||
'zero_or_more' => 'Verdien kan ikke være negativ.',
|
||||
'date_or_time' => 'Verdien må være et gyldig dato- eller klokkeslettformat (ISO 8601).',
|
||||
@ -64,8 +64,8 @@ return [
|
||||
'at_least_one_repetition' => 'Trenger minst en gjentagelse.',
|
||||
'require_repeat_until' => 'Krever enten et antall repetisjoner eller en slutt dato (gjentas til). Ikke begge.',
|
||||
'require_currency_info' => 'Innholdet i dette feltet er ugyldig uten valutainformasjon.',
|
||||
'not_transfer_account' => 'This account is not an account that can be used for transfers.',
|
||||
'require_currency_amount' => 'The content of this field is invalid without foreign amount information.',
|
||||
'not_transfer_account' => 'Denne kontoen er ikke en konto som kan benyttes for overføringer.',
|
||||
'require_currency_amount' => 'Innholdet i dette feltet er ugyldig uten utenlandsk beløpsinformasjon.',
|
||||
'equal_description' => 'Transaksjonsbeskrivelsen bør ikke være lik global beskrivelse.',
|
||||
'file_invalid_mime' => 'Kan ikke akseptere fil ":name" av typen ":mime" for opplasting.',
|
||||
'file_too_large' => '":name"-filen er for stor.',
|
||||
@ -73,9 +73,9 @@ return [
|
||||
'accepted' => ':attribute må bli godtatt.',
|
||||
'bic' => 'Dette er ikke en gyldig BIC.',
|
||||
'at_least_one_trigger' => 'Regel må ha minst en trigger.',
|
||||
'at_least_one_active_trigger' => 'Rule must have at least one active trigger.',
|
||||
'at_least_one_active_trigger' => 'Regel må ha minst en aktiv trigger.',
|
||||
'at_least_one_action' => 'Regel må ha minst en aksjon.',
|
||||
'at_least_one_active_action' => 'Rule must have at least one active action.',
|
||||
'at_least_one_active_action' => 'Regel må ha minst en aktiv handling.',
|
||||
'base64' => 'Dette er ikke godkjent base64 kodet data.',
|
||||
'model_id_invalid' => 'Den angitte ID er ugyldig for denne modellen.',
|
||||
'less' => ':attribute må være mindre enn 10,000,000',
|
||||
@ -166,10 +166,10 @@ return [
|
||||
'unique_piggy_bank_for_user' => 'Navnet på sparegris må være unik.',
|
||||
'unique_object_group' => 'Gruppenavnet må være unikt',
|
||||
'starts_with' => 'Verdien må starte med :values.',
|
||||
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
|
||||
'unique_existing_webhook' => 'You already have another webhook with this combination of URL, trigger, response and delivery.',
|
||||
'same_account_type' => 'Both accounts must be of the same account type',
|
||||
'same_account_currency' => 'Both accounts must have the same currency setting',
|
||||
'unique_webhook' => 'Du har allerede en webhook med denne kombinasjonen URL, utløser, respons og levering.',
|
||||
'unique_existing_webhook' => 'Du har allerede en annen webhook med denne kombinasjonen URL, utløser, respons og levering.',
|
||||
'same_account_type' => 'Begge kontoer må være av samme kontotype',
|
||||
'same_account_currency' => 'Begge kontoer må ha samme valuta-innstilling',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -229,17 +229,17 @@ return [
|
||||
'withdrawal_source_need_data' => 'Trenger en gyldig kilde konto-ID og/eller gyldig kilde kontonavn for å fortsette.',
|
||||
'withdrawal_source_bad_data' => 'Finner ikke en gyldig kilde-konto ved å søke etter ID ":id" eller navn ":name".',
|
||||
'withdrawal_dest_need_data' => 'Trenger en gyldig destinasjons konto-ID og/eller gyldig destinasjons kontonavn for å fortsette.',
|
||||
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
|
||||
'withdrawal_dest_bad_data' => 'Kunne ikke finne en gyldig målkonto ved søk etter ID ":id" eller navn ":name".',
|
||||
|
||||
'reconciliation_source_bad_data' => 'Could not find a valid reconciliation account when searching for ID ":id" or name ":name".',
|
||||
'reconciliation_source_bad_data' => 'Kunne ikke finne en gyldig avstemmingskonto ved søk etter ID ":id" eller navn ":name".',
|
||||
|
||||
'generic_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
|
||||
'generic_source_bad_data' => 'Kunne ikke finne en gyldig kildekonto ved søk etter ID ":id" eller navn ":name".',
|
||||
|
||||
'deposit_source_need_data' => 'Trenger en gyldig kilde konto-ID og/eller gyldig kilde kontonavn for å fortsette.',
|
||||
'deposit_source_bad_data' => 'Kunne ikke finne en gyldig kilde-konto ved å søke etter ID ":id" eller navn ":name".',
|
||||
'deposit_dest_need_data' => 'Trenger en gyldig destinasjons konto-ID og/eller gyldig destinasjons kontonavn for å fortsette.',
|
||||
'deposit_dest_bad_data' => 'Kunne ikke finne en gyldig destinasjons konto ved å søke etter ID ":id" eller navn ":name".',
|
||||
'deposit_dest_wrong_type' => 'The submitted destination account is not of the right type.',
|
||||
'deposit_dest_wrong_type' => 'Den oppgitte målkontoen er ikke av riktig type.',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@ -257,13 +257,13 @@ return [
|
||||
'transfer_source_bad_data' => 'Finner ikke en gyldig kilde-konto ved å søke etter ID ":id" eller navn ":name".',
|
||||
'transfer_dest_need_data' => 'Trenger en gyldig destinasjons konto-ID og/eller gyldig destinasjons kontonavn for å fortsette.',
|
||||
'transfer_dest_bad_data' => 'Kunne ikke finne en gyldig destinasjons konto ved å søke etter ID ":id" eller navn ":name".',
|
||||
'need_id_in_edit' => 'Each split must have transaction_journal_id (either valid ID or 0).',
|
||||
'need_id_in_edit' => 'Hver del må ha transaction_journal_id (enten gyldig ID eller 0).',
|
||||
|
||||
'ob_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',
|
||||
'lc_source_need_data' => 'Need to get a valid source account ID to continue.',
|
||||
'ob_source_need_data' => 'Trenger en gyldig kildekonto ID og/eller gyldig kildekonto navn for å fortsette.',
|
||||
'lc_source_need_data' => 'Trenger en gyldig kildekonto ID for å fortsette.',
|
||||
'ob_dest_need_data' => 'Trenger en gyldig destinasjons konto-ID og/eller gyldig destinasjons kontonavn for å fortsette.',
|
||||
'ob_dest_bad_data' => 'Kunne ikke finne en gyldig destinasjonskonto ved søk etter ID ":id" eller navn ":name".',
|
||||
'reconciliation_either_account' => 'To submit a reconciliation, you must submit either a source or a destination account. Not both, not neither.',
|
||||
'reconciliation_either_account' => 'For å utføre en avstemming, må du enten oppgi en kilde eller en målkonto. Ikke begge eller ingen.',
|
||||
|
||||
'generic_invalid_source' => 'Du kan ikke bruke denne kontoen som kildekonto.',
|
||||
'generic_invalid_destination' => 'Du kan ikke bruke denne kontoen som destinasjonskonto.',
|
||||
@ -274,15 +274,15 @@ return [
|
||||
'gte.numeric' => ':attribute må være større enn eller lik :value.',
|
||||
'gt.numeric' => ':attribute må være større enn :value.',
|
||||
'gte.file' => ':attribute må være større enn eller lik :value kilobyte.',
|
||||
'gte.string' => 'The :attribute must be greater than or equal to :value characters.',
|
||||
'gte.array' => 'The :attribute must have :value items or more.',
|
||||
'gte.string' => ':attribute må være større enn eller lik :value tegn.',
|
||||
'gte.array' => ':attribute må ha :value elementer eller mer.',
|
||||
|
||||
'amount_required_for_auto_budget' => 'Beløpet er påkrevd.',
|
||||
'auto_budget_amount_positive' => 'Beløpet må være mer enn null.',
|
||||
'auto_budget_period_mandatory' => 'Auto budsjett perioden er et obligatorisk felt.',
|
||||
|
||||
// no access to administration:
|
||||
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
||||
'no_access_user_group' => 'Du har ikke rettigheter til denne handlingen.',
|
||||
];
|
||||
|
||||
/*
|
||||
|
@ -279,8 +279,8 @@ return [
|
||||
'response' => 'Reactie',
|
||||
'visit_webhook_url' => 'Bezoek URL van webhook',
|
||||
'reset_webhook_secret' => 'Reset webhook-geheim',
|
||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> has been stored.',
|
||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") has been updated.',
|
||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ({title})</a> is opgeslagen.',
|
||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ({title})</a> is geüpdatet.',
|
||||
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version autorisatieverzoek',
|
||||
@ -1194,11 +1194,11 @@ return [
|
||||
'rule_trigger_not_has_any_tag' => 'Transactie heeft geen tags',
|
||||
'rule_trigger_not_any_notes' => 'Transactie heeft geen notities',
|
||||
'rule_trigger_not_any_external_url' => 'De transactie heeft geen externe URL',
|
||||
'rule_trigger_not_has_no_attachments' => 'Transaction has a (any) attachment(s)',
|
||||
'rule_trigger_not_has_no_category' => 'Transaction has a (any) category',
|
||||
'rule_trigger_not_has_no_budget' => 'Transaction has a (any) budget',
|
||||
'rule_trigger_not_has_no_bill' => 'Transaction has a (any) bill',
|
||||
'rule_trigger_not_has_no_tag' => 'Transaction has a (any) tag',
|
||||
'rule_trigger_not_has_no_attachments' => 'Transactie heeft een bijlage',
|
||||
'rule_trigger_not_has_no_category' => 'Transactie heeft een (welke dan ook) categorie',
|
||||
'rule_trigger_not_has_no_budget' => 'Transactie heeft een (welke dan ook) budget',
|
||||
'rule_trigger_not_has_no_bill' => 'Transactie heeft een (welke dan ook) contract',
|
||||
'rule_trigger_not_has_no_tag' => 'Transactie heeft een (welke dan ook) tag',
|
||||
'rule_trigger_not_no_notes' => 'Transactie heeft notities',
|
||||
'rule_trigger_not_no_external_url' => 'Transactie heeft een externe URL',
|
||||
'rule_trigger_not_source_is_cash' => 'Bronrekening is geen Cash-rekening',
|
||||
|
@ -282,7 +282,7 @@ return [
|
||||
'auto_budget_period_mandatory' => 'De auto-budgetperiode is verplicht.',
|
||||
|
||||
// no access to administration:
|
||||
'no_access_user_group' => 'U hebt niet de juiste toegangsrechten voor deze administratie.',
|
||||
'no_access_user_group' => 'Je hebt niet de juiste toegangsrechten voor deze administratie.',
|
||||
];
|
||||
|
||||
/*
|
||||
|
@ -121,7 +121,6 @@ Route::group(
|
||||
Route::get('sum/spent', ['uses' => 'Budget\SumController@spent', 'as' => 'sum.spent']);
|
||||
Route::get('{budget}/budgeted', ['uses' => 'Budget\SumController@budgeted', 'as' => 'budget.budgeted']);
|
||||
Route::get('{budget}/spent', ['uses' => 'Budget\ShowController@spent', 'as' => 'budget.spent']);
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -321,7 +321,7 @@ try {
|
||||
$breadcrumbs->parent('transactions.show', $object->transactionGroup);
|
||||
}
|
||||
if ($object instanceof Bill) {
|
||||
$breadcrumbs->parent('bills.show',$object);
|
||||
$breadcrumbs->parent('bills.show', $object);
|
||||
}
|
||||
$breadcrumbs->push(
|
||||
trans('firefly.delete_attachment', ['name' => limitStringLength($attachment->filename)]),
|
||||
@ -388,7 +388,7 @@ try {
|
||||
Breadcrumbs::for(
|
||||
'subscriptions.edit',
|
||||
static function (Generator $breadcrumbs, Bill $bill) {
|
||||
$breadcrumbs->parent('subscriptions.show',$bill);
|
||||
$breadcrumbs->parent('subscriptions.show', $bill);
|
||||
$breadcrumbs->push(trans('breadcrumbs.edit_bill', ['name' => limitStringLength($bill->name)]), route('subscriptions.edit', [$bill->id]));
|
||||
}
|
||||
);
|
||||
@ -1197,7 +1197,7 @@ try {
|
||||
'transactions.mass.delete',
|
||||
static function (Generator $breadcrumbs, array $journals) {
|
||||
$objectType = strtolower(reset($journals)['transaction_type_type']);
|
||||
$breadcrumbs->parent('transactions.index',$objectType);
|
||||
$breadcrumbs->parent('transactions.index', $objectType);
|
||||
$breadcrumbs->push(trans('firefly.mass_edit_journals'), route('transactions.mass.delete', ['']));
|
||||
}
|
||||
);
|
||||
|
112
yarn.lock
112
yarn.lock
@ -1097,9 +1097,9 @@
|
||||
"@types/estree" "*"
|
||||
|
||||
"@types/eslint@*":
|
||||
version "8.21.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.21.0.tgz#21724cfe12b96696feafab05829695d4d7bd7c48"
|
||||
integrity sha512-35EhHNOXgxnUgh4XCJsGhE7zdlDhYDN/aMG6UbkByCFFNgQ7b3U+uVoqBpicFydR8JEfgdjCF7SJ7MiJfzuiTA==
|
||||
version "8.21.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.21.1.tgz#110b441a210d53ab47795124dbc3e9bb993d1e7c"
|
||||
integrity sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==
|
||||
dependencies:
|
||||
"@types/estree" "*"
|
||||
"@types/json-schema" "*"
|
||||
@ -1200,9 +1200,9 @@
|
||||
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
|
||||
|
||||
"@types/node@*":
|
||||
version "18.13.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.13.0.tgz#0400d1e6ce87e9d3032c19eb6c58205b0d3f7850"
|
||||
integrity sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==
|
||||
version "18.14.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.0.tgz#94c47b9217bbac49d4a67a967fdcdeed89ebb7d0"
|
||||
integrity sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==
|
||||
|
||||
"@types/parse-json@^4.0.0":
|
||||
version "4.0.0"
|
||||
@ -1629,9 +1629,9 @@ autoprefixer@^10.4.0:
|
||||
postcss-value-parser "^4.2.0"
|
||||
|
||||
axios@^1.2:
|
||||
version "1.3.2"
|
||||
resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.2.tgz#7ac517f0fa3ec46e0e636223fd973713a09c72b3"
|
||||
integrity sha512-1M3O703bYqYuPhbHeya5bnhpYVsDDRyQSabNja04mZtboLNSuZ4YrltestrLXfHgmzua4TpUqRiVKbiQuo2epw==
|
||||
version "1.3.3"
|
||||
resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.3.tgz#e7011384ba839b885007c9c9fae1ff23dceb295b"
|
||||
integrity sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==
|
||||
dependencies:
|
||||
follow-redirects "^1.15.0"
|
||||
form-data "^4.0.0"
|
||||
@ -1830,7 +1830,7 @@ browserify-zlib@^0.2.0:
|
||||
dependencies:
|
||||
pako "~1.0.5"
|
||||
|
||||
browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.6, browserslist@^4.21.3, browserslist@^4.21.4:
|
||||
browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5:
|
||||
version "4.21.5"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7"
|
||||
integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==
|
||||
@ -1906,9 +1906,9 @@ caniuse-api@^3.0.0:
|
||||
lodash.uniq "^4.5.0"
|
||||
|
||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449:
|
||||
version "1.0.30001451"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz#2e197c698fc1373d63e1406d6607ea4617c613f1"
|
||||
integrity sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==
|
||||
version "1.0.30001456"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001456.tgz#734ec1dbfa4f3abe6e435b78ecf40d68e8c32ce4"
|
||||
integrity sha512-XFHJY5dUgmpMV25UqaD4kVq2LsiaU5rS8fb0f17pCoXQiQslzmFgnfOxfvo1bTpTqf7dwG/N/05CnLCnOEKmzA==
|
||||
|
||||
chalk@^2.0.0:
|
||||
version "2.4.2"
|
||||
@ -2154,11 +2154,11 @@ cookie@0.5.0:
|
||||
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
|
||||
|
||||
core-js-compat@^3.25.1:
|
||||
version "3.27.2"
|
||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.27.2.tgz#607c50ad6db8fd8326af0b2883ebb987be3786da"
|
||||
integrity sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==
|
||||
version "3.28.0"
|
||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.28.0.tgz#c08456d854608a7264530a2afa281fadf20ecee6"
|
||||
integrity sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==
|
||||
dependencies:
|
||||
browserslist "^4.21.4"
|
||||
browserslist "^4.21.5"
|
||||
|
||||
core-util-is@~1.0.0:
|
||||
version "1.0.3"
|
||||
@ -2295,22 +2295,22 @@ cssesc@^3.0.0:
|
||||
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
||||
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
||||
|
||||
cssnano-preset-default@^5.2.13:
|
||||
version "5.2.13"
|
||||
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz#e7353b0c57975d1bdd97ac96e68e5c1b8c68e990"
|
||||
integrity sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==
|
||||
cssnano-preset-default@^5.2.14:
|
||||
version "5.2.14"
|
||||
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
|
||||
integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
|
||||
dependencies:
|
||||
css-declaration-sorter "^6.3.1"
|
||||
cssnano-utils "^3.1.0"
|
||||
postcss-calc "^8.2.3"
|
||||
postcss-colormin "^5.3.0"
|
||||
postcss-colormin "^5.3.1"
|
||||
postcss-convert-values "^5.1.3"
|
||||
postcss-discard-comments "^5.1.2"
|
||||
postcss-discard-duplicates "^5.1.0"
|
||||
postcss-discard-empty "^5.1.1"
|
||||
postcss-discard-overridden "^5.1.0"
|
||||
postcss-merge-longhand "^5.1.7"
|
||||
postcss-merge-rules "^5.1.3"
|
||||
postcss-merge-rules "^5.1.4"
|
||||
postcss-minify-font-values "^5.1.0"
|
||||
postcss-minify-gradients "^5.1.1"
|
||||
postcss-minify-params "^5.1.4"
|
||||
@ -2325,7 +2325,7 @@ cssnano-preset-default@^5.2.13:
|
||||
postcss-normalize-url "^5.1.0"
|
||||
postcss-normalize-whitespace "^5.1.1"
|
||||
postcss-ordered-values "^5.1.3"
|
||||
postcss-reduce-initial "^5.1.1"
|
||||
postcss-reduce-initial "^5.1.2"
|
||||
postcss-reduce-transforms "^5.1.0"
|
||||
postcss-svgo "^5.1.0"
|
||||
postcss-unique-selectors "^5.1.1"
|
||||
@ -2336,11 +2336,11 @@ cssnano-utils@^3.1.0:
|
||||
integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
|
||||
|
||||
cssnano@^5.0.8:
|
||||
version "5.1.14"
|
||||
resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.14.tgz#07b0af6da73641276fe5a6d45757702ebae2eb05"
|
||||
integrity sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==
|
||||
version "5.1.15"
|
||||
resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
|
||||
integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
|
||||
dependencies:
|
||||
cssnano-preset-default "^5.2.13"
|
||||
cssnano-preset-default "^5.2.14"
|
||||
lilconfig "^2.0.3"
|
||||
yaml "^1.10.2"
|
||||
|
||||
@ -2519,9 +2519,9 @@ ee-first@1.1.1:
|
||||
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
|
||||
|
||||
electron-to-chromium@^1.4.284:
|
||||
version "1.4.295"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.295.tgz#911d5df67542bf7554336142eb302c5ec90bba66"
|
||||
integrity sha512-lEO94zqf1bDA3aepxwnWoHUjA8sZ+2owgcSZjYQy0+uOSEclJX0VieZC+r+wLpSxUHRd6gG32znTWmr+5iGzFw==
|
||||
version "1.4.302"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.302.tgz#5770646ffe7051677b489226144aad9386d420f2"
|
||||
integrity sha512-Uk7C+7aPBryUR1Fwvk9VmipBcN9fVsqBO57jV2ZjTm+IZ6BMNqu7EDVEg2HxCNufk6QcWlFsBkhQyQroB2VWKw==
|
||||
|
||||
elliptic@^6.5.3:
|
||||
version "6.5.4"
|
||||
@ -4012,12 +4012,12 @@ postcss-calc@^8.2.3:
|
||||
postcss-selector-parser "^6.0.9"
|
||||
postcss-value-parser "^4.2.0"
|
||||
|
||||
postcss-colormin@^5.3.0:
|
||||
version "5.3.0"
|
||||
resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz#3cee9e5ca62b2c27e84fce63affc0cfb5901956a"
|
||||
integrity sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==
|
||||
postcss-colormin@^5.3.1:
|
||||
version "5.3.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f"
|
||||
integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==
|
||||
dependencies:
|
||||
browserslist "^4.16.6"
|
||||
browserslist "^4.21.4"
|
||||
caniuse-api "^3.0.0"
|
||||
colord "^2.9.1"
|
||||
postcss-value-parser "^4.2.0"
|
||||
@ -4075,10 +4075,10 @@ postcss-merge-longhand@^5.1.7:
|
||||
postcss-value-parser "^4.2.0"
|
||||
stylehacks "^5.1.1"
|
||||
|
||||
postcss-merge-rules@^5.1.3:
|
||||
version "5.1.3"
|
||||
resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz#8f97679e67cc8d08677a6519afca41edf2220894"
|
||||
integrity sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==
|
||||
postcss-merge-rules@^5.1.4:
|
||||
version "5.1.4"
|
||||
resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
|
||||
integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==
|
||||
dependencies:
|
||||
browserslist "^4.21.4"
|
||||
caniuse-api "^3.0.0"
|
||||
@ -4216,10 +4216,10 @@ postcss-ordered-values@^5.1.3:
|
||||
cssnano-utils "^3.1.0"
|
||||
postcss-value-parser "^4.2.0"
|
||||
|
||||
postcss-reduce-initial@^5.1.1:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz#c18b7dfb88aee24b1f8e4936541c29adbd35224e"
|
||||
integrity sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==
|
||||
postcss-reduce-initial@^5.1.2:
|
||||
version "5.1.2"
|
||||
resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6"
|
||||
integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==
|
||||
dependencies:
|
||||
browserslist "^4.21.4"
|
||||
caniuse-api "^3.0.0"
|
||||
@ -4454,9 +4454,9 @@ regenerator-transform@^0.15.1:
|
||||
"@babel/runtime" "^7.8.4"
|
||||
|
||||
regexpu-core@^5.2.1:
|
||||
version "5.3.0"
|
||||
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.0.tgz#4d0d044b76fedbad6238703ae84bfdedee2cf074"
|
||||
integrity sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==
|
||||
version "5.3.1"
|
||||
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.1.tgz#66900860f88def39a5cb79ebd9490e84f17bcdfb"
|
||||
integrity sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==
|
||||
dependencies:
|
||||
"@babel/regjsgen" "^0.8.0"
|
||||
regenerate "^1.4.2"
|
||||
@ -4960,9 +4960,9 @@ terser@^4.6.3:
|
||||
source-map-support "~0.5.12"
|
||||
|
||||
terser@^5.14.1, terser@^5.9.0:
|
||||
version "5.16.3"
|
||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.3.tgz#3266017a9b682edfe019b8ecddd2abaae7b39c6b"
|
||||
integrity sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q==
|
||||
version "5.16.4"
|
||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.4.tgz#51284b440b93242291a98f2a9903c024cfb70e6e"
|
||||
integrity sha512-5yEGuZ3DZradbogeYQ1NaGz7rXVBDWujWlx1PT8efXO6Txn+eWbfKqB2bTDVmFXmePFkoLU6XI8UektMIEA0ug==
|
||||
dependencies:
|
||||
"@jridgewell/source-map" "^0.3.2"
|
||||
acorn "^8.5.0"
|
||||
@ -5368,9 +5368,9 @@ wrappy@1:
|
||||
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
|
||||
|
||||
ws@^8.4.2:
|
||||
version "8.12.0"
|
||||
resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8"
|
||||
integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==
|
||||
version "8.12.1"
|
||||
resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.1.tgz#c51e583d79140b5e42e39be48c934131942d4a8f"
|
||||
integrity sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==
|
||||
|
||||
xtend@^4.0.0:
|
||||
version "4.0.2"
|
||||
@ -5408,9 +5408,9 @@ yargs-parser@^21.1.1:
|
||||
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
|
||||
|
||||
yargs@^17.2.1:
|
||||
version "17.6.2"
|
||||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541"
|
||||
integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==
|
||||
version "17.7.0"
|
||||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.0.tgz#b21e9af1e0a619a2a9c67b1133219b2975a07985"
|
||||
integrity sha512-dwqOPg5trmrre9+v8SUo2q/hAwyKoVfu8OC1xPHKJGNdxAvPl4sKxL4vBnh3bQz/ZvvGAFeA5H3ou2kcOY8sQQ==
|
||||
dependencies:
|
||||
cliui "^8.0.1"
|
||||
escalade "^3.1.1"
|
||||
|
Loading…
Reference in New Issue
Block a user